This commit includes: - Django backend with multi-tenancy (django-tenants) - React + TypeScript frontend with Vite - Platform administration API with role-based access control - Authentication system with token-based auth - Quick login dev tools for testing different user roles - CORS and CSRF configuration for local development - Docker development environment setup 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
165 lines
6.0 KiB
TypeScript
165 lines
6.0 KiB
TypeScript
import React, { useState, useEffect } from 'react';
|
|
import { Link, useLocation } from 'react-router-dom';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { Menu, X, Sun, Moon } from 'lucide-react';
|
|
import SmoothScheduleLogo from '../SmoothScheduleLogo';
|
|
import LanguageSelector from '../LanguageSelector';
|
|
|
|
interface NavbarProps {
|
|
darkMode: boolean;
|
|
toggleTheme: () => void;
|
|
}
|
|
|
|
const Navbar: React.FC<NavbarProps> = ({ darkMode, toggleTheme }) => {
|
|
const { t } = useTranslation();
|
|
const location = useLocation();
|
|
const [isMenuOpen, setIsMenuOpen] = useState(false);
|
|
const [isScrolled, setIsScrolled] = useState(false);
|
|
|
|
useEffect(() => {
|
|
const handleScroll = () => {
|
|
setIsScrolled(window.scrollY > 10);
|
|
};
|
|
window.addEventListener('scroll', handleScroll);
|
|
return () => window.removeEventListener('scroll', handleScroll);
|
|
}, []);
|
|
|
|
// Close mobile menu on route change
|
|
useEffect(() => {
|
|
setIsMenuOpen(false);
|
|
}, [location.pathname]);
|
|
|
|
const navLinks = [
|
|
{ to: '/features', label: t('marketing.nav.features') },
|
|
{ to: '/pricing', label: t('marketing.nav.pricing') },
|
|
{ to: '/about', label: t('marketing.nav.about') },
|
|
{ to: '/contact', label: t('marketing.nav.contact') },
|
|
];
|
|
|
|
const isActive = (path: string) => location.pathname === path;
|
|
|
|
return (
|
|
<nav
|
|
className={`fixed top-0 left-0 right-0 z-50 transition-all duration-300 ${
|
|
isScrolled
|
|
? 'bg-white/80 dark:bg-gray-900/80 backdrop-blur-lg shadow-sm'
|
|
: 'bg-transparent'
|
|
}`}
|
|
>
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div className="flex items-center justify-between h-16 lg:h-20">
|
|
{/* Logo */}
|
|
<Link to="/" className="flex items-center gap-2 group">
|
|
<SmoothScheduleLogo className="h-12 w-12 text-gray-900 dark:text-white group-hover:text-brand-600 dark:group-hover:text-brand-400 transition-colors" />
|
|
<span className="text-xl font-bold text-gray-900 dark:text-white hidden sm:block">
|
|
Smooth Schedule
|
|
</span>
|
|
</Link>
|
|
|
|
{/* Desktop Navigation */}
|
|
<div className="hidden lg:flex items-center gap-8">
|
|
{navLinks.map((link) => (
|
|
<Link
|
|
key={link.to}
|
|
to={link.to}
|
|
className={`text-sm font-medium transition-colors ${
|
|
isActive(link.to)
|
|
? 'text-brand-600 dark:text-brand-400'
|
|
: 'text-gray-600 dark:text-gray-300 hover:text-brand-600 dark:hover:text-brand-400'
|
|
}`}
|
|
>
|
|
{link.label}
|
|
</Link>
|
|
))}
|
|
</div>
|
|
|
|
{/* Right Section */}
|
|
<div className="flex items-center gap-3">
|
|
{/* Language Selector - Hidden on mobile */}
|
|
<div className="hidden md:block">
|
|
<LanguageSelector />
|
|
</div>
|
|
|
|
{/* Theme Toggle */}
|
|
<button
|
|
onClick={toggleTheme}
|
|
className="p-2 rounded-lg text-gray-600 dark:text-gray-300 hover:bg-gray-100 dark:hover:bg-gray-800 transition-colors"
|
|
aria-label={darkMode ? 'Switch to light mode' : 'Switch to dark mode'}
|
|
>
|
|
{darkMode ? <Sun className="h-5 w-5" /> : <Moon className="h-5 w-5" />}
|
|
</button>
|
|
|
|
{/* Login Button - Hidden on mobile */}
|
|
<Link
|
|
to="/login"
|
|
className="hidden md:inline-flex px-4 py-2 text-sm font-medium text-gray-700 dark:text-gray-300 hover:text-brand-600 dark:hover:text-brand-400 transition-colors"
|
|
>
|
|
{t('marketing.nav.login')}
|
|
</Link>
|
|
|
|
{/* Get Started CTA */}
|
|
<Link
|
|
to="/signup"
|
|
className="hidden sm:inline-flex px-4 py-2 text-sm font-medium text-white bg-brand-600 rounded-lg hover:bg-brand-700 transition-colors shadow-sm"
|
|
>
|
|
{t('marketing.nav.getStarted')}
|
|
</Link>
|
|
|
|
{/* Mobile Menu Button */}
|
|
<button
|
|
onClick={() => setIsMenuOpen(!isMenuOpen)}
|
|
className="lg:hidden p-2 rounded-lg text-gray-600 dark:text-gray-300 hover:bg-gray-100 dark:hover:bg-gray-800 transition-colors"
|
|
aria-label="Toggle menu"
|
|
>
|
|
{isMenuOpen ? <X className="h-6 w-6" /> : <Menu className="h-6 w-6" />}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Mobile Menu */}
|
|
<div
|
|
className={`lg:hidden overflow-hidden transition-all duration-300 ${
|
|
isMenuOpen ? 'max-h-96' : 'max-h-0'
|
|
}`}
|
|
>
|
|
<div className="px-4 py-4 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-800">
|
|
<div className="flex flex-col gap-2">
|
|
{navLinks.map((link) => (
|
|
<Link
|
|
key={link.to}
|
|
to={link.to}
|
|
className={`px-4 py-3 rounded-lg text-sm font-medium transition-colors ${
|
|
isActive(link.to)
|
|
? 'bg-brand-50 dark:bg-brand-900/20 text-brand-600 dark:text-brand-400'
|
|
: 'text-gray-600 dark:text-gray-300 hover:bg-gray-100 dark:hover:bg-gray-800'
|
|
}`}
|
|
>
|
|
{link.label}
|
|
</Link>
|
|
))}
|
|
<hr className="my-2 border-gray-200 dark:border-gray-800" />
|
|
<Link
|
|
to="/login"
|
|
className="px-4 py-3 rounded-lg text-sm font-medium text-gray-600 dark:text-gray-300 hover:bg-gray-100 dark:hover:bg-gray-800 transition-colors"
|
|
>
|
|
{t('marketing.nav.login')}
|
|
</Link>
|
|
<Link
|
|
to="/signup"
|
|
className="px-4 py-3 rounded-lg text-sm font-medium text-center text-white bg-brand-600 hover:bg-brand-700 transition-colors"
|
|
>
|
|
{t('marketing.nav.getStarted')}
|
|
</Link>
|
|
<div className="px-4 py-2">
|
|
<LanguageSelector />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
);
|
|
};
|
|
|
|
export default Navbar;
|