/** * @component TopBar * @purpose Clean top bar matching Screenshot 1 with Track Order, About Us, Blog, Contact Us, FAQs, and Free Shipping notification. */ 'use client'; import Link from 'next/link'; import { Truck } from 'lucide-react'; export function TopBar() { return (
{/* Left Nav Links */}
Track Order | About Us | Blog | Contact Us | FAQs
{/* Right Free Shipping Text */}
Free Shipping on orders over ₹999!
); }