File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed
Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change 11import type { Metadata } from "next"
22import { Geist , Geist_Mono } from "next/font/google"
33import "./globals.css"
4+ import Link from "next/link"
45
56const geistSans = Geist ( {
67 variable : "--font-geist-sans" ,
@@ -32,22 +33,25 @@ export default function RootLayout({
3233 < nav >
3334 < ul >
3435 < li >
35- < a href = "/" > Home</ a >
36+ < Link href = "/" > Home</ Link >
3637 </ li >
3738 < li >
38- < a href = "/about" > About</ a >
39+ < Link href = "/about" > About</ Link >
3940 </ li >
4041 < li >
41- < a href = "/team" > Team</ a >
42+ < Link href = "/team" > Team</ Link >
4243 </ li >
4344 < li >
44- < a href = "/reports_and_metrics" > Metrics and Reports</ a >
45+ < Link href = "/reports_and_metrics" > Metrics and Reports</ Link >
4546 </ li >
4647 < li >
47- < a href = "/process" > Process and Plan</ a >
48+ < Link href = "/process" > Process and Plan</ Link >
4849 </ li >
4950 < li >
50- < a href = "https://github.com/JacRIT/Team3.github.io/wiki" >
51+ < a
52+ target = "_blank"
53+ href = "https://github.com/JacRIT/Team3.github.io/wiki"
54+ >
5155 Wiki/Documentation
5256 </ a >
5357 </ li >
You can’t perform that action at this time.
0 commit comments