diff --git a/src/components/Hero.astro b/src/components/Hero.astro index 984126d..31d28bc 100644 --- a/src/components/Hero.astro +++ b/src/components/Hero.astro @@ -13,9 +13,9 @@ interface Props { const { version, versions, svgContent } = Astro.props; const navItems = [ - { id: "about", label: "About" }, + { id: "about", label: "About", align: "end" }, { id: "spec", label: "Read the Spec", primary: true }, - { id: "faq", label: "FAQ" }, + { id: "faq", label: "FAQ", align: "start" }, ]; const baseClasses = `inline-flex items-center justify-center gap-2 @@ -29,6 +29,7 @@ const primaryClasses = `bg-sky-600 text-white const secondaryClasses = `text-gray-600 dark:text-neutral-400 hover:bg-gray-100 hover:text-gray-950 dark:hover:bg-neutral-800 dark:hover:text-neutral-50`; + ---