From f253eafc2f6c0c63131de65b070163c30fbfa916 Mon Sep 17 00:00:00 2001 From: AdithyanA Date: Sat, 7 Oct 2023 00:34:30 +0530 Subject: [PATCH 1/3] added events page --- index.html | 6 ++++ src/App.jsx | 3 +- src/components/Events/Boxes.jsx | 20 +++++++++++ src/components/Events/Events.css | 59 ++++++++++++++++++++++++++++++++ src/components/Events/Events.jsx | 19 ++++++---- 5 files changed, 100 insertions(+), 7 deletions(-) create mode 100644 src/components/Events/Boxes.jsx diff --git a/index.html b/index.html index 0c589ec..0b3bf3d 100644 --- a/index.html +++ b/index.html @@ -4,6 +4,12 @@ + + + Vite + React diff --git a/src/App.jsx b/src/App.jsx index 54ad5b4..e742104 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -3,7 +3,7 @@ import About from "./components/About/About"; import Footer from "./components/Footer/Footer"; import Hero from "./components/Hero/Hero"; import Navbar from "./components/Navbar/Navbar"; - +import Events from "./components/Events/Events"; function App() { return ( <> @@ -11,6 +11,7 @@ function App() { +