Renamed topbar to header

This commit is contained in:
Benjamin Sherriff
2023-10-19 20:36:59 -04:00
parent f358b6c467
commit e63d034450
5 changed files with 8 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
import React from 'react';
import RecoilRootWrapper from '@app/recoil-root-wrapper';
import Topbar from '@/components/Topbar';
import Header from '@/components/Header';
import { Inter } from 'next/font/google';
import { Box, MantineProvider } from '@mantine/core';
import { ModalsProvider } from '@mantine/modals';
@@ -27,7 +27,7 @@ export default function RootLayout({ children }: { children: React.ReactNode })
<MantineProvider>
<Notifications />
<ModalsProvider>
<Topbar />
<Header />
<Box p='xl' pt='sm' className='h-full'>
{children}
</Box>