mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 20:26:53 +00:00
27 lines
644 B
TypeScript
27 lines
644 B
TypeScript
"use client"
|
|
|
|
import "./globals.css"
|
|
import { Inter } from "next/font/google"
|
|
import Navbar from "@/components/navbar"
|
|
import MouseMoveEffect from "@/components/mouse-move-effect"
|
|
import type React from "react" // Added import for React
|
|
|
|
const inter = Inter({ subsets: ["latin"] })
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en" className="dark">
|
|
<body className={`${inter.className} bg-background text-foreground antialiased`}>
|
|
<Navbar />
|
|
<MouseMoveEffect />
|
|
<div className="pt-16 md:pt-16">{children}</div>
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|
|
|