From 67370c27f0f43414a9876e09adcb7dc991e41791 Mon Sep 17 00:00:00 2001 From: Gopal Kaul Date: Tue, 21 Feb 2023 20:32:52 +0530 Subject: [PATCH] Add FAQs to the Header --- src/components/widgets/Header.astro | 59 ++++++++++++++++++----------- 1 file changed, 37 insertions(+), 22 deletions(-) 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', + // }, ]; --- -