Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Contact Us page #101

Merged
merged 28 commits into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
f0be92f
Added Navbar component to Layout
deveshsawant05 Jul 26, 2024
02f20d9
Fixed Navbar overlapping
deveshsawant05 Jul 26, 2024
169ad3b
Test Workflow
deveshsawant05 Jul 26, 2024
dcfb8c0
Merge branch 'iiitv:new' into new
deveshsawant05 Jul 26, 2024
20607ff
Fixed Navbar overlapping
deveshsawant05 Jul 26, 2024
c408ef5
Merge branch 'new' of https://github.com/deveshsawant05/iiitvcc into new
deveshsawant05 Jul 26, 2024
28f64b8
Merge branch 'new' of https://github.com/deveshsawant05/iiitvcc into new
deveshsawant05 Jul 27, 2024
ab26882
added footer to layout. fixed navbar links prefetch
deveshsawant05 Jul 29, 2024
ab6071a
Merge branch 'iiitv:new' into new
deveshsawant05 Jul 29, 2024
d460013
changed title,changed icon
deveshsawant05 Jul 29, 2024
054aa62
Merge branch 'new' of https://github.com/deveshsawant05/iiitvcc into new
deveshsawant05 Jul 30, 2024
a085e1f
Merge branch 'iiitv:new' into new
deveshsawant05 Jul 31, 2024
a7baab9
Merge branch 'iiitv:new' into new
deveshsawant05 Jul 31, 2024
fd4d577
Added Complete Events Page
deveshsawant05 Aug 5, 2024
0704d7b
Merge branch 'iiitv:new' into new
deveshsawant05 Aug 5, 2024
c5faf4c
Added mobile css for events page, added winners sections
deveshsawant05 Aug 6, 2024
0072de6
Merge branch 'iiitv:new' into new
deveshsawant05 Aug 6, 2024
aac4b58
fixed winners section font
deveshsawant05 Aug 6, 2024
37e62e6
fixed
deveshsawant05 Aug 6, 2024
1b2ae78
Merge branch 'iiitv:new' into new
deveshsawant05 Aug 7, 2024
8dbda73
Added Blogs Page
deveshsawant05 Aug 10, 2024
db0af49
Deleted some temporary files
deveshsawant05 Aug 10, 2024
c181f5a
Merge branch 'iiitv:new' into new
deveshsawant05 Aug 10, 2024
7fdad10
Blogs Page Fixes, Changed Projects to Blogs
deveshsawant05 Aug 11, 2024
bf06dde
Merge branch 'iiitv:new' into new
deveshsawant05 Aug 12, 2024
f0e06bc
Merge branch 'iiitv:new' into new
deveshsawant05 Aug 12, 2024
7e376c2
Merge branch 'iiitv:new' into new
deveshsawant05 Aug 13, 2024
38cf1e6
Added Contact Us page
deveshsawant05 Aug 14, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading