Skip to content

Commit

Permalink
Added Contact Us page (#101)
Browse files Browse the repository at this point in the history
Contact Us Page
  • Loading branch information
deveshsawant05 authored Aug 14, 2024
1 parent 1108810 commit 3fa974a
Show file tree
Hide file tree
Showing 7 changed files with 451 additions and 3 deletions.
1 change: 1 addition & 0 deletions public/gmail.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions src/app/contact_us/components/manSittingAtTableSvg.js

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions src/app/contact_us/components/manWithLaptopSvg.js

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions src/app/contact_us/layout.tsx
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}
</>
);
}
368 changes: 368 additions & 0 deletions src/app/contact_us/page.jsx

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions src/app/contact_us/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.socials-link-div:hover > img{
opacity: 1;
}
6 changes: 3 additions & 3 deletions src/components/footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -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}
Expand Down

1 comment on commit 3fa974a

@github-actions
Copy link

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

Please sign in to comment.