Files
SnapOtter/apps/landing/src/components/navbar.tsx
T

120 lines
4.3 KiB
TypeScript

"use client";
import { Github, Menu, Star, X } from "lucide-react";
import { useState } from "react";
const links = [
{ label: "Features", href: "#features" },
{ label: "Download", href: "#how-it-works" },
{ label: "API", href: "#api" },
{ label: "Pricing", href: "/licensing" },
{ label: "Docs", href: "https://docs.snapotter.com" },
{ label: "About", href: "#open-source" },
{ label: "Contact", href: "mailto:contact@snapotter.com" },
];
export function Navbar() {
const [open, setOpen] = useState(false);
return (
<nav className="fixed top-0 left-0 right-0 z-50 bg-background/60 backdrop-blur-xl after:absolute after:bottom-0 after:left-0 after:h-px after:w-full after:bg-gradient-to-r after:from-transparent after:via-accent/30 after:to-transparent">
<div className="mx-auto flex h-16 max-w-6xl items-center justify-between px-6">
<a href="/" className="flex items-center gap-2">
<div className="flex h-8 w-8 items-center justify-center rounded-lg bg-accent text-accent-foreground text-sm font-bold">
S
</div>
<span className="text-lg font-bold tracking-tight">SnapOtter</span>
</a>
<div className="hidden items-center gap-6 lg:flex">
{links.map((item) => (
<a
key={item.label}
href={item.href}
className="text-sm text-muted transition-colors hover:text-foreground"
{...(item.href.startsWith("http") || item.href.startsWith("mailto")
? { target: "_blank", rel: "noopener noreferrer" }
: {})}
>
{item.label}
</a>
))}
</div>
<div className="hidden items-center gap-3 md:flex">
<a
href="https://github.com/ashim-hq/ashim"
target="_blank"
rel="noopener noreferrer"
className="flex items-center gap-1.5 rounded-lg border border-border px-3 py-1.5 text-sm font-medium transition-colors hover:bg-background-alt"
>
<Github size={16} />
<Star size={12} className="text-accent" />
<span>Star</span>
</a>
<a
href="https://demo.snapotter.com"
className="rounded-lg border border-accent px-4 py-1.5 text-sm font-medium text-accent transition-colors hover:bg-accent/10"
>
Try Demo
</a>
<a
href="mailto:contact@snapotter.com?subject=Book%20a%20Demo"
className="rounded-lg bg-accent px-4 py-1.5 text-sm font-medium text-accent-foreground transition-colors hover:bg-accent-hover"
>
Book a Demo
</a>
</div>
<button
className="text-muted lg:hidden"
onClick={() => setOpen(!open)}
aria-label="Toggle menu"
type="button"
>
{open ? <X size={24} /> : <Menu size={24} />}
</button>
</div>
{open && (
<div className="border-t border-border bg-background px-6 py-4 lg:hidden">
{links.map((item) => (
<a
key={item.label}
href={item.href}
className="block py-2 text-sm text-muted"
onClick={() => setOpen(false)}
>
{item.label}
</a>
))}
<div className="mt-3 flex flex-col gap-2">
<a
href="https://github.com/ashim-hq/ashim"
target="_blank"
rel="noopener noreferrer"
className="flex items-center justify-center gap-1.5 rounded-lg border border-border px-4 py-2 text-sm font-medium"
>
<Github size={16} />
<Star size={12} className="text-accent" />
Star on GitHub
</a>
<a
href="https://demo.snapotter.com"
className="block rounded-lg border border-accent px-4 py-2 text-center text-sm font-medium text-accent"
>
Try Demo
</a>
<a
href="mailto:contact@snapotter.com?subject=Book%20a%20Demo"
className="block rounded-lg bg-accent px-4 py-2 text-center text-sm font-medium text-accent-foreground"
>
Book a Demo
</a>
</div>
</div>
)}
</nav>
);
}