Skip to content

Commit

Permalink
Merge pull request #74 from Ekep-Obasi/clean-up-hero-sub-text
Browse files Browse the repository at this point in the history
Clean up HeroSubText
  • Loading branch information
GabrielCTroia authored Oct 10, 2023
2 parents 66e8ae2 + 6d329c3 commit 537c24a
Showing 1 changed file with 2 additions and 16 deletions.
18 changes: 2 additions & 16 deletions apps/movex-docs/modules/home/HeroSubText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,17 @@ type Props = {
className: string;
};

// Simplify Multiplayer State Management: Build Apps faster with Movex. Just Code UI and Logic, Let Movex Handle the Rest

export const HeroSubText: React.FC<Props> = (props) => {
return (
<h3 className={props.className}>
{/* Movex state */}
{/* Redux inspired state container that is shared between all peers in a network. */}
Movex is an <i><b>Open Source</b></i> State Management and Synchronization library that abstracts the
server-side and backend logic to share state between multiple users of
your app.
Movex is a Redux inspired state management and synchronization tool that
does the heavy lifting to share state between peers in a network.
<br />
<br />
<b>
🚀 Build 10x faster by focusing only on the frontend – Movex handles the
rest!
</b>
{/* <br />
<br />
Best part - the backend is generated automatically for you. */}
{/* Movex synchonizes state between all the users in an app. */}
{/* Redux inspired state management tool for more than one user in the network. */}
{/* A state management library that redefines backend management for apps that need to share state with multiple users in realtime. */}
{/* It abstracts the backend away, meaning you don't have to deal with network protocols, servers,
It allows you to focus on the front-end, while it seamlessly
takes care of the back-end. */}
</h3>
);
};

0 comments on commit 537c24a

Please sign in to comment.