From 25ccdffeb9fe2b582fe61401ba755d276b4a9b19 Mon Sep 17 00:00:00 2001 From: ajnart Date: Sat, 21 May 2022 00:52:55 +0200 Subject: [PATCH] :sparkles: Make logo clickable --- src/components/layout/Logo.tsx | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/src/components/layout/Logo.tsx b/src/components/layout/Logo.tsx index 805d5469d..c1232a051 100644 --- a/src/components/layout/Logo.tsx +++ b/src/components/layout/Logo.tsx @@ -1,4 +1,5 @@ import { Group, Image, Text } from '@mantine/core'; +import { NextLink } from '@mantine/next'; import * as React from 'react'; export function Logo({ style }: any) { @@ -11,14 +12,22 @@ export function Logo({ style }: any) { position: 'relative', }} /> - - Homarr - + + Homarr + + ); }