Link logo to /home page

This commit is contained in:
MartinBraquet
2025-10-29 20:04:50 +01:00
parent a4e22ec4b1
commit fdf8d649fe
2 changed files with 17 additions and 1 deletions

View File

@@ -22,7 +22,7 @@ export default function SiteLogo(props: {
}
return (
<Link
href={'/'}
href={'/home'}
className={clsx('flex flex-row gap-1 pb-3 pt-6', className)}
>
{inner}

16
web/pages/home.tsx Normal file
View File

@@ -0,0 +1,16 @@
import {PageBase} from 'web/components/page-base'
import {Col} from 'web/components/layout/col'
import {LoggedOutHome} from "web/components/home/home";
export default function ProfilesPage() {
return (
<PageBase trackPageView={'home'}>
<Col className="items-center">
<Col className={'w-full rounded px-3 py-4 sm:px-6'}>
<LoggedOutHome/>
</Col>
</Col>
</PageBase>
)
}