diff --git a/packages/react/src/Home.tsx b/packages/react/src/Home.tsx index 1cc0b3c..baa8d15 100644 --- a/packages/react/src/Home.tsx +++ b/packages/react/src/Home.tsx @@ -1,5 +1,30 @@ +import { Link } from "react-router-dom"; +import { Button } from "../components/Button"; + function Home() { - return <>; + return ( +
+
+
+

+ Build your components in isolation +

+

+ There are a lot of component libraries out there, but why it install + so many things? +

+
+
+ + +
+
+
+ ); } export default Home;