diff --git a/public/gmail.svg b/public/gmail.svg
new file mode 100644
index 0000000..637fddf
--- /dev/null
+++ b/public/gmail.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/app/contact_us/components/manSittingAtTableSvg.js b/src/app/contact_us/components/manSittingAtTableSvg.js
new file mode 100644
index 0000000..a38d55a
--- /dev/null
+++ b/src/app/contact_us/components/manSittingAtTableSvg.js
@@ -0,0 +1,34 @@
+const ManSittingAtTableSvg = ()=>(
+
+
+);
+
+export default ManSittingAtTableSvg;
\ No newline at end of file
diff --git a/src/app/contact_us/components/manWithLaptopSvg.js b/src/app/contact_us/components/manWithLaptopSvg.js
new file mode 100644
index 0000000..fd0cfb9
--- /dev/null
+++ b/src/app/contact_us/components/manWithLaptopSvg.js
@@ -0,0 +1,26 @@
+const ManWithLaptopSvg =()=> (
+
+);
+
+export default ManWithLaptopSvg;
\ No newline at end of file
diff --git a/src/app/contact_us/layout.tsx b/src/app/contact_us/layout.tsx
new file mode 100644
index 0000000..49829f3
--- /dev/null
+++ b/src/app/contact_us/layout.tsx
@@ -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 (
+ <>
+
+ {children}
+ >
+ );
+}
diff --git a/src/app/contact_us/page.jsx b/src/app/contact_us/page.jsx
new file mode 100644
index 0000000..5c2b13c
--- /dev/null
+++ b/src/app/contact_us/page.jsx
@@ -0,0 +1,368 @@
+"use client";
+import React, { useState}from "react";
+import Image from "next/image";
+import Link from "next/link";
+import { Input } from "@/components/ui/input";
+import { Label } from "@/components/ui/label";
+import ManWithLaptopSvg from "./components/manWithLaptopSvg";
+import ManSittingAtTableSvg from "./components/manSittingAtTableSvg";
+import "./styles.css";
+
+import { Montserrat } from "next/font/google";
+
+const montserratFont = Montserrat({
+ weight: ["100", "200", "400", "600"],
+ subsets: ["latin"],
+});
+
+export default function Page() {
+ const [messageOrBugDropdown,setMessageOrBugDropdown] = useState(false);
+ const [messageOrBug, setMessageOrBug] = useState("Message");
+
+ const [formSubmitted, setFormSubmitted] = useState(false);
+
+ const linkedInLink = "https://www.linkedin.com/company/iiitvcc/";
+ const twitterLink = "https://x.com/iiitvcc";
+ const instagramLink = "https://www.instagram.com/codingclub_iiitv/";
+ const facebookLink = "https://www.facebook.com/iiitvcc/";
+ const ccEmailLink = "mailto:codingclub@iiitvadodara.ac.in";
+
+ function handleDropDownClick(){
+ setMessageOrBugDropdown(prev=>!prev)
+ }
+ return (
+
+
+
IIIT Vadodara
+
+
Coding Club
+
+
+
+ Contact Us
+
+
+
+
+ At the Coding Club of IIIT Vadodara, we're more than just a group of
+ programmers—we're a community of innovators, creators, and
+ problem-solvers. Whether you have a burning question, a brilliant
+ idea, or just want to collaborate with like-minded tech enthusiasts,
+ we're here to connect. Reach out to us and let's turn your coding
+ dreams into reality!
+
+
+
+
+
+
+ {formSubmitted?
+
+
+
+ Message Send Succesfully...
+
+
+ :
+
+
+
+
+
+ }
+
+
+
+
+ {formSubmitted?
+ null:
+
+ }
+
+
Get in touch with
+
+ IIITV Coding Club
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
+
+const SuccessIcon = () =>(
+
+)
\ No newline at end of file
diff --git a/src/app/contact_us/styles.css b/src/app/contact_us/styles.css
new file mode 100644
index 0000000..eee9222
--- /dev/null
+++ b/src/app/contact_us/styles.css
@@ -0,0 +1,3 @@
+.socials-link-div:hover > img{
+ opacity: 1;
+}
\ No newline at end of file
diff --git a/src/components/footer.jsx b/src/components/footer.jsx
index b89deff..ae881ec 100644
--- a/src/components/footer.jsx
+++ b/src/components/footer.jsx
@@ -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:codingclub@iiitvadodara.ac.in";
const addressLink = "https://goo.gl/maps/7g5D6XJpMAD2";
@@ -61,11 +61,11 @@ function Footer() {
Events
- Projects
+ Blogs