mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-10 07:25:48 +01:00
Basic layout styling
This commit is contained in:
17
components/layout/Navbar.tsx
Normal file
17
components/layout/Navbar.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import { Navbar as MantineNavbar } from '@mantine/core';
|
||||
import DateComponent, { DateModule } from '../modules/date/DateModule';
|
||||
import ModuleWrapper from '../modules/moduleWrapper';
|
||||
export default function Navbar() {
|
||||
return (
|
||||
<MantineNavbar
|
||||
height="100%"
|
||||
hiddenBreakpoint="md"
|
||||
hidden
|
||||
width={{
|
||||
base: 'auto',
|
||||
}}
|
||||
>
|
||||
<ModuleWrapper module={DateModule} />
|
||||
</MantineNavbar>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user