From 890c50187e089d5727e0429583b3f46f8ac3df18 Mon Sep 17 00:00:00 2001 From: "Anwesha.28" Date: Sun, 13 Jul 2025 10:37:59 +0530 Subject: [PATCH 1/6] Add files via upload --- index.html | 31 +++-- src/App.jsx | 27 ++-- src/Playground.jsx | 21 ++- src/components/playground/Footer.jsx | 99 +++++++++++++ src/components/playground/Test.jsx | 14 +- src/components/shared/Button.jsx | 18 +-- src/components/shared/MainLayout.jsx | 15 ++ src/index.css | 2 +- src/main.jsx | 49 ++++--- src/pages/playground/landing-page/Events.jsx | 138 +++++++++++++++++++ src/pages/playground/landing-page/Home.jsx | 24 ++-- 11 files changed, 356 insertions(+), 82 deletions(-) create mode 100644 src/components/playground/Footer.jsx create mode 100644 src/components/shared/MainLayout.jsx create mode 100644 src/pages/playground/landing-page/Events.jsx diff --git a/index.html b/index.html index 960a0bb..31ecc8c 100644 --- a/index.html +++ b/index.html @@ -1,12 +1,19 @@ - - - - - - ASME - - -
- - - + + + + + + ASME + + + +
+ + + diff --git a/src/App.jsx b/src/App.jsx index 6a5570f..56b3d0b 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,12 +1,15 @@ -import Button from "./components/shared/Button"; - -function App() { - return ( -
- ASME Website - -
- ); -} - -export default App; +import Button from "./components/shared/Button"; +import Footer from "./components/playground/Footer"; + +function App() { + return ( + <> +
+ ASME Website + +
+ + ); +} + +export default App; diff --git a/src/Playground.jsx b/src/Playground.jsx index 047e749..825d2c4 100644 --- a/src/Playground.jsx +++ b/src/Playground.jsx @@ -1,7 +1,14 @@ -import { Outlet } from "react-router"; - -const Playground = () => { - return ; -}; - -export default Playground; +import { Outlet } from "react-router"; + +const Playground = () => { + <> +
+ +
+