2026-06-07 03:58:32 -04:00
|
|
|
import Link from "next/link";
|
|
|
|
|
import { Mic } from "lucide-react";
|
|
|
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
|
|
|
|
|
|
export function SiteHeader() {
|
|
|
|
|
return (
|
|
|
|
|
<header className="sticky top-0 z-40 w-full border-b border-border/70 bg-background/85 backdrop-blur-md">
|
|
|
|
|
<div className="container flex h-[72px] items-center justify-between">
|
|
|
|
|
<Link href="/" className="flex items-center gap-2.5 font-display text-lg font-bold tracking-tight">
|
|
|
|
|
<span className="flex h-9 w-9 items-center justify-center rounded-2xl bg-brand text-brand-foreground">
|
|
|
|
|
<Mic className="h-5 w-5" />
|
|
|
|
|
</span>
|
2026-06-20 20:12:43 -04:00
|
|
|
<span>Podcast Distribution AI</span>
|
2026-06-07 03:58:32 -04:00
|
|
|
</Link>
|
|
|
|
|
|
|
|
|
|
<nav className="hidden items-center gap-8 text-sm font-medium text-muted-foreground md:flex">
|
|
|
|
|
<Link href="/#how-it-works" className="transition-colors hover:text-foreground">How it works</Link>
|
2026-06-08 04:37:10 -04:00
|
|
|
<Link href="/features" className="transition-colors hover:text-foreground">Features</Link>
|
2026-06-07 03:58:32 -04:00
|
|
|
<Link href="/pricing" className="transition-colors hover:text-foreground">Pricing</Link>
|
2026-06-07 18:30:53 -04:00
|
|
|
<Link href="/faq" className="transition-colors hover:text-foreground">FAQ</Link>
|
2026-06-08 04:37:10 -04:00
|
|
|
<Link href="/about" className="transition-colors hover:text-foreground">About</Link>
|
2026-06-07 03:58:32 -04:00
|
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
|
<Button asChild variant="ghost" size="sm" className="hidden sm:inline-flex">
|
|
|
|
|
<Link href="/sign-in">Log in</Link>
|
|
|
|
|
</Button>
|
|
|
|
|
<Button asChild size="sm">
|
|
|
|
|
<Link href="/sign-up">Get started</Link>
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</header>
|
|
|
|
|
);
|
|
|
|
|
}
|