From aaca5f6d6c9861372cbd74d75ebb9dd97ceeff07 Mon Sep 17 00:00:00 2001 From: despiegk Date: Thu, 24 Jul 2025 17:27:51 +0200 Subject: [PATCH] ... --- src/App.jsx | 2 +- src/components/Navigation.jsx | 7 +- src/components/NewHome.jsx | 12 +- src/components/ProductsPage.jsx | 142 ++++++++-------- src/components/RegisterPage.jsx | 26 +-- src/components/TechnologyPage.jsx | 262 +++++++++++++++--------------- src/components/ThemeToggle.jsx | 25 +++ src/components/TierSHPage.jsx | 128 +++++++-------- src/components/ui/button.jsx | 2 +- src/styles/index.css | 53 +++++- tailwind.config.js | 58 ++++++- 11 files changed, 427 insertions(+), 290 deletions(-) create mode 100644 src/components/ThemeToggle.jsx diff --git a/src/App.jsx b/src/App.jsx index bd163ec..ae37fc2 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -25,7 +25,7 @@ function App() { return ( -
+
} /> } /> diff --git a/src/components/Navigation.jsx b/src/components/Navigation.jsx index 4ae187c..a1fb9af 100644 --- a/src/components/Navigation.jsx +++ b/src/components/Navigation.jsx @@ -4,6 +4,7 @@ import { Sheet, SheetContent, SheetTrigger, SheetClose } from '@/components/ui/s import { Globe, Menu } from 'lucide-react' import { Link, useLocation } from 'react-router-dom' import navigationData from '../config/navigation.json' +import ThemeToggle from './ThemeToggle.jsx' function Navigation() { const location = useLocation() @@ -14,7 +15,7 @@ function Navigation() { } return ( -