From 90df8a3f0cc53c765678ab81c33c7e7ac55435bd Mon Sep 17 00:00:00 2001 From: Gregor Lohaus Date: Mon, 7 Apr 2025 17:52:50 +0200 Subject: [PATCH] basic styling --- next.config.js | 6 +++++- src/app/layout.tsx | 14 +++++++++++++- src/app/page.tsx | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) 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