bun --bun run dev + haldus leht init

This commit is contained in:
2025-07-21 16:26:47 +03:00
parent efc0e34ae7
commit f87f8374f4
25 changed files with 4770 additions and 789 deletions

View File

@@ -1,16 +1,15 @@
// Head metadata
import type { Metadata } from "next";
import Head from 'next/head';
import Head from "next/head";
// Provides the theme context to the app
import { ThemeProvider } from "@/components/Theme-provider"
import { ThemeProvider } from "@/components/Theme-provider";
import "./globals.css";
import "material-symbols";
// Fonts
import { Work_Sans } from "next/font/google";
import SidebarParent from "@/components/SidebarParent";
import Footer from "@/components/Footer";
@@ -35,20 +34,23 @@ export default function RootLayout({
<Head>
<title>TipiLAN</title>
<meta property="og:title" content="TipiLAN 2025" key="title" />
<meta name="description" content="TipiLAN 2025 Eesti suurim tudengite korraldatud LAN!" />
<meta
name="description"
content="TipiLAN 2025 Eesti suurim tudengite korraldatud LAN!"
/>
</Head>
<body
className={`${workSans.className} antialiased bg-[#EEE5E5] dark:bg-[#0E0F19]`}
>
<ThemeProvider
attribute="class"
defaultTheme="system"
enableSystem
disableTransitionOnChange
attribute="class"
defaultTheme="system"
enableSystem
disableTransitionOnChange
>
<SidebarParent />
{children}
<Footer />
<SidebarParent />
{children}
<Footer />
</ThemeProvider>
</body>
</html>