From 28ed8a5612b370739f1c772c6fd638e705e78c77 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Mon, 27 Feb 2023 12:06:04 +0800 Subject: [PATCH] Make the FullLogo a link to the library --- .../elements/images/OmnivoreFullLogo.tsx | 103 ++++++++++-------- 1 file changed, 57 insertions(+), 46 deletions(-) diff --git a/packages/web/components/elements/images/OmnivoreFullLogo.tsx b/packages/web/components/elements/images/OmnivoreFullLogo.tsx index b2da0ea44..7dc9d805a 100644 --- a/packages/web/components/elements/images/OmnivoreFullLogo.tsx +++ b/packages/web/components/elements/images/OmnivoreFullLogo.tsx @@ -1,3 +1,4 @@ +import Link from 'next/link' import { config } from '../../tokens/stitches.config' export type OmnivoreFullLogoProps = { @@ -11,51 +12,61 @@ export function OmnivoreFullLogo(props: OmnivoreFullLogoProps): JSX.Element { const href = props.href || '/home' return ( - - - - - - - - - - - + + + + + + + + + + + + + + + ) }