diff --git a/public/favicon/site.webmanifest b/public/favicon/site.webmanifest index 93f9971..4962fdc 100644 --- a/public/favicon/site.webmanifest +++ b/public/favicon/site.webmanifest @@ -1,19 +1,19 @@ { - "name": "", - "short_name": "", - "icons": [ - { - "src": "/android-chrome-192x192.png", - "sizes": "192x192", - "type": "image/png" - }, - { - "src": "/android-chrome-512x512.png", - "sizes": "512x512", - "type": "image/png" - } - ], - "theme_color": "#0c0a09", - "background_color": "#0c0a09", - "display": "standalone" + "name": "Hackerspace NTNU", + "short_name": "Hackerspace", + "icons": [ + { + "src": "/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#0c0a09", + "background_color": "#0c0a09", + "display": "standalone" } diff --git a/src/components/layout/Footer.tsx b/src/components/layout/Footer.tsx index 9788d07..815a0b6 100644 --- a/src/components/layout/Footer.tsx +++ b/src/components/layout/Footer.tsx @@ -18,198 +18,196 @@ function Footer() { const t = useTranslations('layout'); const year = new Date().getFullYear(); return ( - ); } diff --git a/src/components/layout/Header.tsx b/src/components/layout/Header.tsx index 773b957..6812b8d 100644 --- a/src/components/layout/Header.tsx +++ b/src/components/layout/Header.tsx @@ -10,48 +10,46 @@ import { ProfileMenu } from '@/components/settings/ProfileMenu'; function Header() { const t = useTranslations('layout'); return ( -
-
- + + +
+
diff --git a/src/components/layout/Main.tsx b/src/components/layout/Main.tsx index 9943a9d..5b9de33 100644 --- a/src/components/layout/Main.tsx +++ b/src/components/layout/Main.tsx @@ -2,21 +2,18 @@ import { cx } from '@/lib/utils'; type MainProps = { children?: React.ReactNode; - mainClassName?: string; className?: string; }; -function Main({ children, mainClassName, className }: MainProps) { +function Main({ children, className }: MainProps) { return ( -
-
- {children} -
+
+ {children}
); }