From 628f8b139306361985600542249fa6408a7199b1 Mon Sep 17 00:00:00 2001 From: Harshit Date: Thu, 21 May 2026 15:53:53 +0530 Subject: [PATCH] feat: Create contact page with form --- src/App.jsx | 2 + src/components/Footer.jsx | 2 +- src/pages/Contact.jsx | 168 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 171 insertions(+), 1 deletion(-) create mode 100644 src/pages/Contact.jsx diff --git a/src/App.jsx b/src/App.jsx index 7ee77a4..3e78795 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -13,6 +13,7 @@ import SummerOfAI from './components/SummerOfAI' import Contribute from './components/Contribute' import FAQ from './components/FAQ' import Concepts from './pages/Concepts' +import Contact from './pages/Contact' import BackToTopButton from './components/Backtotop' import OurMission from './components/OurMission' @@ -49,6 +50,7 @@ export default function App() { } /> } /> } /> + } />