mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-05-04 13:13:42 -04:00
Link logo to /home page
This commit is contained in:
@@ -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
16
web/pages/home.tsx
Normal 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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user