File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 1
1
import { Inter } from "next/font/google" ;
2
2
3
3
import type { Metadata } from "next" ;
4
+
4
5
import "./globals.css" ;
5
6
import { HeaderBar } from "@/components/HeaderBar" ;
6
7
Original file line number Diff line number Diff line change
1
+ import Link from "next/link" ;
1
2
import React from "react" ;
2
3
3
4
import styles from "./HeaderBar.module.css" ;
@@ -13,27 +14,27 @@ export const HeaderBar = () => {
13
14
< div className = { styles . aboutUs } >
14
15
About Us
15
16
< div className = { styles . aboutUsDropdown } >
16
- < a href = "# " > Our Mission</ a >
17
- < a href = "# " > Our Team</ a >
18
- < a href = "# " > Contact</ a >
17
+ < Link href = "/ " > Our Mission</ Link >
18
+ < Link href = "/ " > Our Team</ Link >
19
+ < Link href = "/ " > Contact</ Link >
19
20
</ div >
20
21
</ div >
21
22
22
23
{ /* Use the dropdown styles for "get Involved" */ }
23
24
< div className = { styles . getInvolved } >
24
25
Get Involved
25
26
< div className = { styles . getInvolvedDropdown } >
26
- < a href = "# " > Upcoming Events</ a >
27
- < a href = "# " > Donate</ a >
27
+ < Link href = "/ " > Upcoming Events</ Link >
28
+ < Link href = "/ " > Donate</ Link >
28
29
</ div >
29
30
</ div >
30
31
31
32
{ /* Use the dropdown styles for "Our Impact" */ }
32
33
< div className = { styles . ourImpact } >
33
34
Our Impact
34
35
< div className = { styles . ourImpactDropdown } >
35
- < a href = "# " > Testimonials</ a >
36
- < a href = "# " > Newsletter</ a >
36
+ < Link href = "/ " > Testimonials</ Link >
37
+ < Link href = "/ " > Newsletter</ Link >
37
38
</ div >
38
39
</ div >
39
40
You can’t perform that action at this time.
0 commit comments