Skip to content

Commit fdf8d64

Browse files
committed
Link logo to /home page
1 parent a4e22ec commit fdf8d64

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

web/components/site-logo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default function SiteLogo(props: {
2222
}
2323
return (
2424
<Link
25-
href={'/'}
25+
href={'/home'}
2626
className={clsx('flex flex-row gap-1 pb-3 pt-6', className)}
2727
>
2828
{inner}

web/pages/home.tsx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
</Col>
14+
</PageBase>
15+
)
16+
}

0 commit comments

Comments
 (0)