From 28a1b1294e7f22ffa76e13df74aeecc20de4e0ce Mon Sep 17 00:00:00 2001 From: Altay Date: Tue, 12 Dec 2023 13:13:36 +0300 Subject: [PATCH] feat: make auth logo clickable --- app/(auth)/layout.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/(auth)/layout.tsx b/app/(auth)/layout.tsx index 5394b02..475cb42 100644 --- a/app/(auth)/layout.tsx +++ b/app/(auth)/layout.tsx @@ -2,6 +2,7 @@ import type { PropsWithChildren } from 'react'; import { Logo } from '@/components/logo'; import { Container, Flex } from '@radix-ui/themes'; +import Link from 'next/link'; export default function AuthLayout(props: PropsWithChildren) { return ( @@ -16,7 +17,10 @@ export default function AuthLayout(props: PropsWithChildren) { minHeight: '80vh', }} > - + + + + {props.children}