We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4e22ec commit fdf8d64Copy full SHA for fdf8d64
web/components/site-logo.tsx
@@ -22,7 +22,7 @@ export default function SiteLogo(props: {
22
}
23
return (
24
<Link
25
- href={'/'}
+ href={'/home'}
26
className={clsx('flex flex-row gap-1 pb-3 pt-6', className)}
27
>
28
{inner}
web/pages/home.tsx
@@ -0,0 +1,16 @@
1
+import {PageBase} from 'web/components/page-base'
2
+import {Col} from 'web/components/layout/col'
3
+import {LoggedOutHome} from "web/components/home/home";
4
+
5
6
+export default function ProfilesPage() {
7
+ return (
8
+ <PageBase trackPageView={'home'}>
9
+ <Col className="items-center">
10
+ <Col className={'w-full rounded px-3 py-4 sm:px-6'}>
11
+ <LoggedOutHome/>
12
+ </Col>
13
14
+ </PageBase>
15
+ )
16
+}
0 commit comments