From ab1e2a32a03cf8d9ba4eb66ce1a3de67c5c55e7c Mon Sep 17 00:00:00 2001 From: Aj - Thomas Date: Mon, 16 May 2022 13:54:29 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20Remove=20Navbar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/layout/Layout.tsx | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/src/components/layout/Layout.tsx b/src/components/layout/Layout.tsx index a6ad51a9a..8b82b4a74 100644 --- a/src/components/layout/Layout.tsx +++ b/src/components/layout/Layout.tsx @@ -1,31 +1,28 @@ -import { AppShell, Center, createStyles } from '@mantine/core'; +import { AppShell, createStyles } from '@mantine/core'; import { Header } from './Header'; import { Footer } from './Footer'; import Aside from './Aside'; -import Navbar from './Navbar'; const useStyles = createStyles((theme) => ({ - main: { - }, + main: {}, })); export default function Layout({ children, style }: any) { const { classes, cx } = useStyles(); return ( } aside={