Hello World
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} + +