From 59a3fa98873ce4ffc4bd82e5f0115354d7b7502a Mon Sep 17 00:00:00 2001 From: Hassan Kazi Date: Sun, 10 Aug 2025 17:05:28 +0530 Subject: [PATCH 1/2] Added About Us page with anime theme styles --- src/App.jsx | 3 + src/components/About/AboutUs.css | 144 +++++++++++++++++++++++++++ src/components/About/AboutUs.jsx | 50 ++++++++++ src/components/Anime/Anime.jsx | 165 +++++++++++++++++++++++++++---- src/components/Navbar.jsx | 1 + src/firebase.js | 15 +-- src/main.jsx | 5 +- 7 files changed, 353 insertions(+), 30 deletions(-) create mode 100644 src/components/About/AboutUs.css create mode 100644 src/components/About/AboutUs.jsx diff --git a/src/App.jsx b/src/App.jsx index f8eb84b..72f24a8 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -4,6 +4,7 @@ import './App.css'; import { Navbar } from './components/Navbar'; import Footer from './components/Footer'; + function App() { return ( <> @@ -12,6 +13,8 @@ function App() {