From 2a566eee44b7d341780d134873b47574a93f634f Mon Sep 17 00:00:00 2001 From: Hydroxycarbamide Date: Mon, 21 Nov 2022 10:47:12 +0100 Subject: [PATCH] Add pages and basic navbar --- app/contact/page.tsx | 0 app/layout.tsx | 14 +++++++++++++- package.json | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 app/contact/page.tsx diff --git a/app/contact/page.tsx b/app/contact/page.tsx new file mode 100644 index 0000000..e69de29 diff --git a/app/layout.tsx b/app/layout.tsx index c62b66f..2b530cc 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,3 +1,5 @@ +import Link from "next/link" + export default function RootLayout({ children }: { @@ -6,7 +8,17 @@ export default function RootLayout({ return ( - {children} + + + {children} + ) } diff --git a/package.json b/package.json index 8c56cdb..fd0071a 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "private": true, "scripts": { - "dev": "next dev", + "dev": "next dev --turbo", "build": "next build", "start": "next start", "lint": "next lint"