---
/**
* NavSticky
* Start transparant, wordt wit/solid na scrollen.
* Identieke props als NavSimple.
*/
interface Props {
logo: string;
logoHref?: string;
links: { label: string; href: string }[];
cta?: { label: string; href: string };
}
const { logo, logoHref = '/', links, cta } = Astro.props;
---