diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index d7a588b..07684fd 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -1,15 +1,11 @@ -import { Outlet, useLocation } from 'react-router-dom' +import { Outlet } from 'react-router-dom' import { Footer } from './Footer' import { Header } from './Header' -import { HomeAurora } from '../pages/home/HomeAurora' export function Layout() { - const location = useLocation() - const isHomePage = location.pathname === '/' return ( -
- {isHomePage && } +
diff --git a/src/pages/home/HomeAurora.tsx b/src/pages/home/HomeAurora.tsx index 11049cb..2f744be 100644 --- a/src/pages/home/HomeAurora.tsx +++ b/src/pages/home/HomeAurora.tsx @@ -1,41 +1,46 @@ -export function HomeAurora() { +import { H1, H5 } from "@/components/Texts" +import { Button } from "@/components/Button" + + +export function HomeAurora({ onGetStartedClick }: { onGetStartedClick: () => void }) { return (
-
- {/* Top cyan soft blob */} -