diff --git a/src/components/widgets/Header.astro b/src/components/widgets/Header.astro index 5e88e7e..cd5d1a9 100644 --- a/src/components/widgets/Header.astro +++ b/src/components/widgets/Header.astro @@ -1,29 +1,38 @@ --- -import { Icon } from 'astro-icon'; -import Logo from '~/components/common/Logo.astro'; -import ToggleTheme from '~/components/common/ToggleTheme.astro'; -import ToggleMenu from '~/components/common/ToggleMenu.astro'; +import { Icon } from "astro-icon"; +import Logo from "~/components/common/Logo.astro"; +import ToggleTheme from "~/components/common/ToggleTheme.astro"; +import ToggleMenu from "~/components/common/ToggleMenu.astro"; -import { getHomePermalink} from '~/utils/permalinks'; +import { getHomePermalink } from "~/utils/permalinks"; const links = [ - { - text: 'Features', - href: '#features', - }, - { - text: 'Download', - href: '#download', - }, - // { - // text: 'About us', - // href: '#about', - // }, + { + text: "Features", + href: "#features", + }, + { + text: "FAQs", + href: "#faqs", + }, + { + text: "Download", + href: "#download", + }, + // { + // text: 'About us', + // href: '#about', + // }, ]; --- -