dynamic tournament search

This commit is contained in:
Owen Rees
2023-05-26 14:24:53 +02:00
parent 96eb4e37f1
commit 1407125ba5
4 changed files with 37 additions and 6 deletions
+3 -1
View File
@@ -1,4 +1,5 @@
import Navbar from "@/components/Navbar";
import Footer from "@/components/Footer";
export default function Layout({
children, // will be a page or nested layout
@@ -6,9 +7,10 @@ export default function Layout({
children: React.ReactNode;
}) {
return (
<div className="bg-white font-sans leading-normal tracking-normal">
<div className="h-screen bg-white font-sans leading-normal tracking-normal">
<Navbar />
{children}
<Footer />
</div>
);
}