-
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.
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} | ||
|
3fa974a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deploy preview for iiitvcc ready!
✅ Preview
https://iiitvcc-4r5wiz8t0-iiitv-coding-clubs-projects.vercel.app
Built with commit 3fa974a.
This pull request is being automatically deployed with vercel-action