import { Shield } from "lucide-react"; import Link from "next/link"; interface HeaderProps { user?: { name: string | null; email: string; }; } export function Header({ user }: HeaderProps) { return (
jack-template
); }