mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 04:26:57 +00:00
tournaments ordered by date
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import Navbar from "@/components/Navbar";
|
||||
|
||||
export default function Layout({
|
||||
children, // will be a page or nested layout
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<>
|
||||
<Navbar />
|
||||
{children}
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
export default function Navbar() {
|
||||
return <nav className="bg-gray-800 p-2 m-0 w-full">NAVBAR</nav>;
|
||||
}
|
||||
Reference in New Issue
Block a user