diff --git a/app/components/global/Star.tsx b/app/components/global/Star.tsx
new file mode 100644
index 0000000..992bf2e
--- /dev/null
+++ b/app/components/global/Star.tsx
@@ -0,0 +1,17 @@
+import Image from 'next/image'
+import React from 'react'
+
+const Star = () => {
+ return (
+
+
+
+ )
+}
+
+export default Star
\ No newline at end of file
diff --git a/app/contact/page.tsx b/app/contact/page.tsx
new file mode 100644
index 0000000..9d6aa63
--- /dev/null
+++ b/app/contact/page.tsx
@@ -0,0 +1,91 @@
+"use client";
+
+import React from "react";
+import { motion } from "framer-motion";
+import TimerSection from "../components/Timer/TimerSection";
+import Footer from "../components/global/Footer";
+import Star from "../components/global/Star";
+
+const page = () => {
+ return (
+
+
+
+
+ Contact Us
+
+
+ We're Here to Help
+
+
+ Have inquiries, partnership proposals, or just want to say hello? We
+ are here to listen! Drop us a message, and our team will get back to
+ you as soon as possible. Your feedback is valuable to us. Let's
+ connect!
+
+
+
+
+
+
+
+
ADDRESS
+
San Jose, CA
+
+
+
+
PHONE
+
1234567890
+
+
+
+
EMAIL
+
innovance@iot.kiit.in
+
+
+
+
+
+
+ );
+};
+
+export default page;
diff --git a/app/fonts/Poppins-Medium.ttf b/app/fonts/Poppins-Medium.ttf
new file mode 100644
index 0000000..6bcdcc2
Binary files /dev/null and b/app/fonts/Poppins-Medium.ttf differ
diff --git a/app/globals.css b/app/globals.css
index 2d5e5c8..e3d7ffb 100644
--- a/app/globals.css
+++ b/app/globals.css
@@ -47,6 +47,13 @@ body {
font-style: normal;
}
+@font-face {
+ font-family: "Poppins";
+ src: url("./fonts/Poppins-Medium.ttf");
+ font-weight: normal;
+ font-style: normal;
+}
+
#comingSoon {
visibility: hidden;
position: relative;
diff --git a/app/layout.tsx b/app/layout.tsx
index 2459302..888b130 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -27,7 +27,7 @@ export default function RootLayout({
return (
{children}
diff --git a/public/backgrounds/star_image.png b/public/backgrounds/star_image.png
new file mode 100644
index 0000000..f152c66
Binary files /dev/null and b/public/backgrounds/star_image.png differ
diff --git a/public/backgrounds/star_image_blue.jpg b/public/backgrounds/star_image_blue.jpg
new file mode 100644
index 0000000..8a4b228
Binary files /dev/null and b/public/backgrounds/star_image_blue.jpg differ
diff --git a/tailwind.config.ts b/tailwind.config.ts
index b37febd..c0c4a60 100644
--- a/tailwind.config.ts
+++ b/tailwind.config.ts
@@ -19,7 +19,7 @@ const config: Config = {
bitter: ["Bitter"],
geist: ["Geist"],
geistMono: ["GeistMono"],
- poppins: ["Poppins", "sans-serif"],
+ poppins: ["Poppins"],
},
},
},