import { Link } from "@tanstack/react-router";
import { Megaphone } from "lucide-react";

export function AnnouncementBar() {
  return (
    <div className="w-full bg-gold text-gold-foreground">
      <div className="mx-auto flex max-w-7xl items-center justify-center gap-2 px-4 py-2 text-center text-xs sm:text-sm">
        <Megaphone className="hidden h-4 w-4 shrink-0 sm:block" />
        <p className="font-medium">
          Admissions Open for 2026-27 | Visit / Contact School For More Details
        </p>
      </div>
    </div>
  );
}
