From 219f90b8f498d669b7e738c4963c8f646ff7f53c Mon Sep 17 00:00:00 2001 From: development Date: Tue, 20 Jan 2026 15:23:48 +0000 Subject: [PATCH 1/9] Update src/App.tsx --- src/App.tsx | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index e409dfb..9ba55e6 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,16 +1,19 @@ import React from 'react'; +import { ThemeProvider } from './components/ui/ThemeProvider'; import NavbarStyleApple from './components/navbar/NavbarStyleApple/NavbarStyleApple'; import HeroBillboard from './components/sections/hero/HeroBillboard'; import FeatureCardOne from './components/sections/feature/FeatureCardOne'; function App() { return ( -
- - - -
+ +
+ + + +
+
); } -export default App; \ No newline at end of file +export default App; From 8435694e4ff552c2490d50c431d017f6a351252c Mon Sep 17 00:00:00 2001 From: development Date: Tue, 20 Jan 2026 15:23:49 +0000 Subject: [PATCH 2/9] Update src/components/navbar/NavbarStyleApple/NavbarStyleApple.tsx --- .../NavbarStyleApple/NavbarStyleApple.tsx | 60 ++++--------------- 1 file changed, 13 insertions(+), 47 deletions(-) diff --git a/src/components/navbar/NavbarStyleApple/NavbarStyleApple.tsx b/src/components/navbar/NavbarStyleApple/NavbarStyleApple.tsx index 8cabc12..cfd7bb2 100644 --- a/src/components/navbar/NavbarStyleApple/NavbarStyleApple.tsx +++ b/src/components/navbar/NavbarStyleApple/NavbarStyleApple.tsx @@ -1,69 +1,35 @@ import React from 'react'; -import { Menu, X } from 'lucide-react'; - -const NavbarStyleApple: React.FC = () => { - const [isMenuOpen, setIsMenuOpen] = React.useState(false); +const NavbarStyleApple = () => { return ( -