-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed web dev email link in footer component
- Loading branch information
1 parent
c981181
commit 8176697
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ import { useMediaQuery } from "@chakra-ui/react"; | |
|
||
export default function Footer() { | ||
const [isSmallerScreen] = useMediaQuery("(max-width: 425px)"); | ||
const sahanaMail = "mailto:sahanaselvasankari@gmail.com?subject=Hey Sahana!"; | ||
const fawazMail = "mailto:rmfawaz07@gmail.com?subject=Hey Fawaz!"; | ||
|
||
return ( | ||
<Center className="footer-container"> | ||
|
@@ -17,7 +17,7 @@ export default function Footer() { | |
Badhri Hari | ||
</a> | ||
, | ||
<a href="[email protected]" target="_blank" rel="noreferrer"> | ||
<a href={fawazMail} target="_blank" rel="noreferrer"> | ||
Fawaz Reyas Mohideen | ||
</a> | ||
</div> | ||
|
@@ -31,7 +31,7 @@ export default function Footer() { | |
Badhri Hari | ||
</a> | ||
, | ||
<a href="[email protected]" target="_blank" rel="noreferrer"> | ||
<a href={fawazMail} target="_blank" rel="noreferrer"> | ||
Fawaz Reyas Mohideen | ||
</a> | ||
</div> | ||
|