diff --git a/next.config.js b/next.config.js index 121c4f4..07785cb 100644 --- a/next.config.js +++ b/next.config.js @@ -5,6 +5,10 @@ import "./src/env.js"; /** @type {import("next").NextConfig} */ -const config = {}; +const config = { + typescript: { + ignoreBuildErrors: true + } +}; export default config; diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ee67a01..f9993d3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -14,12 +14,24 @@ const geist = Geist({ variable: "--font-geist-sans", }); +const TopNav = () => { + return ( + + ) +} + export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return ( - {children} + + + {children} + ); } diff --git a/src/app/page.tsx b/src/app/page.tsx index d51141d..13026f6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,7 @@ import Link from "next/link"; export default function HomePage() { return ( -
+
Hello World