diff --git a/frontend/index.html b/frontend/index.html index 1a37b58..3405e40 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -1,16 +1,19 @@ - - - - - - - - - - - Veridian - Cultivation Platform + + + + + + + + + + + +Veridian - Cultivation Platform diff --git a/frontend/src/components/DesignSwitch.tsx b/frontend/src/components/DesignSwitch.tsx new file mode 100644 index 0000000..31250d9 --- /dev/null +++ b/frontend/src/components/DesignSwitch.tsx @@ -0,0 +1,21 @@ +import { useTheme } from '../context/ThemeContext'; +import { Palette } from 'lucide-react'; + +export default function DesignSwitch() { + const { theme, setTheme } = useTheme(); + + return ( + + ); +} diff --git a/frontend/src/components/Layout.tsx b/frontend/src/components/Layout.tsx index 7cc5a96..85a72b4 100644 --- a/frontend/src/components/Layout.tsx +++ b/frontend/src/components/Layout.tsx @@ -14,6 +14,7 @@ import { Breadcrumbs } from './ui/Breadcrumbs'; import { pageVariants } from '../lib/animations'; import { Search, Bell, Settings, Filter, ChevronDown } from 'lucide-react'; import ThemeToggle from './ThemeToggle'; +import DesignSwitch from './DesignSwitch'; import { UserMenu } from './layout/UserMenu'; import { NotificationBell } from './notifications/NotificationBell'; @@ -91,6 +92,7 @@ export default function Layout() { +