-
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.
install react icons
- Loading branch information
Showing
13 changed files
with
58 additions
and
13 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import styles from "./authLinks.module.css"; | ||
|
||
const AuthLinks = () => { | ||
return <div className={styles.container}>AuthLinks</div>; | ||
}; | ||
|
||
export default AuthLinks; |
Empty file.
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
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
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
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
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
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 |
---|---|---|
@@ -1,8 +1,29 @@ | ||
import React from "react"; | ||
import styles from "./navbar.module.css"; | ||
import Link from "next/link"; | ||
import AuthLinks from "@/components/authLinks/AuthLinks"; | ||
import ThemeToggle from "@/components/themeToggle/ThemeToggle"; | ||
import { FaFacebook, FaInstagram, FaTiktok, FaYoutube } from "react-icons/fa"; | ||
|
||
export const Navbar = () => { | ||
return <div className={styles.container}>Navbar</div>; | ||
const Navbar = () => { | ||
return ( | ||
<div className={styles.container}> | ||
<div className={styles.social}></div> | ||
|
||
<FaFacebook /> | ||
<FaInstagram /> | ||
<FaTiktok /> | ||
<FaYoutube /> | ||
<div className={styles.logo}>ExampleBlog</div> | ||
<div className={styles.links}> | ||
<ThemeToggle /> | ||
<Link href="/">Homepage</Link> | ||
<Link href="/">Contact</Link> | ||
<Link href="/">About</Link> | ||
<AuthLinks /> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Navbar; |
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import styles from "./themeToggle.module.css"; | ||
|
||
const ThemeToggle = () => { | ||
return <div className={styles.container}>ThemeToggle</div>; | ||
}; | ||
|
||
export default ThemeToggle; |
Empty file.