mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-07-03 06:26:52 +00:00
Create ClientLayout.tsx
This commit is contained in:
parent
7affb5f4e8
commit
c9359bb7f5
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>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user