mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-10-07 18:36:19 +00:00
Create ClientLayout.tsx
This commit is contained in:
14
web/app/components/ClientLayout.tsx
Normal file
14
web/app/components/ClientLayout.tsx
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import Navbar from "@/components/navbar"
|
||||||
|
import MouseMoveEffect from "@/components/mouse-move-effect"
|
||||||
|
|
||||||
|
export default function ClientLayout({ children }: { children: React.ReactNode }) {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Navbar />
|
||||||
|
<MouseMoveEffect />
|
||||||
|
<div className="pt-16 md:pt-16">{children}</div>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
Reference in New Issue
Block a user