https://altly.madebydanny.uk
at main 26 lines 977 B view raw
1import { Eye } from "lucide-react"; 2 3export const Header = () => { 4 return ( 5 <header className="border-b border-border/50 backdrop-blur-sm"> 6 <div className="container mx-auto px-4 py-4"> 7 <div className="flex items-center justify-between"> 8 <div className="flex items-center gap-3"> 9 <div className="w-10 h-10 rounded-lg bg-primary/20 flex items-center justify-center"> 10 <Eye className="w-6 h-6 text-primary" /> 11 </div> 12 <h1 className="text-2xl font-bold text-foreground">ALTly</h1> 13 </div> 14 <nav className="flex gap-6"> 15 <a href="/" className="text-sm font-medium text-foreground hover:text-primary transition-colors"> 16 Home 17 </a> 18 <a href="#" className="text-sm font-medium text-muted-foreground hover:text-primary transition-colors"> 19 Docs 20 </a> 21 </nav> 22 </div> 23 </div> 24 </header> 25 ); 26};