-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7e376c2
commit 38cf1e6
Showing
7 changed files
with
451 additions
and
3 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import React from "react"; | ||
import Navbar from "@/components/navbar"; | ||
import Footer from "@/components/footer"; | ||
|
||
interface RootLayoutProps { | ||
children: React.ReactNode; | ||
} | ||
|
||
export default function RootLayout({ children }: RootLayoutProps) { | ||
return ( | ||
<> | ||
<Navbar /> | ||
{children} | ||
</> | ||
); | ||
} |
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.socials-link-div:hover > img{ | ||
opacity: 1; | ||
} |
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ const montserratFont = Montserrat({ | |
function Footer() { | ||
const homeLink = "/home"; | ||
const eventsLink = "/events"; | ||
const projectsLink = "/projects"; | ||
const blogsLink = "/blogs"; | ||
const membersLink = "/members"; | ||
const ccEmailLink = "mailto:[email protected]"; | ||
const addressLink = "https://goo.gl/maps/7g5D6XJpMAD2"; | ||
|
@@ -61,11 +61,11 @@ function Footer() { | |
Events | ||
</Link> | ||
<Link | ||
href={projectsLink} | ||
href={blogsLink} | ||
className={montserratFont.className} | ||
prefetch={false} | ||
> | ||
Projects | ||
Blogs | ||
</Link> | ||
<Link | ||
className={montserratFont.className} | ||
|