diff --git a/src/components/widgets/Hero.astro b/src/components/widgets/Hero.astro index bf9316e..c1426fd 100644 --- a/src/components/widgets/Hero.astro +++ b/src/components/widgets/Hero.astro @@ -1,7 +1,7 @@ --- import { Icon } from 'astro-icon/components'; import { Picture } from '@astrojs/image/components'; -import type { CallToAction } from '~/components/widgets/CallToAction.astro'; +import { CallToAction } from '~/types'; export interface Props { title?: string; @@ -48,7 +48,8 @@ const { {callToAction?.icon && ( <> -   + +   )} {callToAction?.text} @@ -66,7 +67,8 @@ const { {callToAction2?.icon && ( <> -   + +   )} {callToAction2.text} diff --git a/src/components/widgets/Hero2.astro b/src/components/widgets/Hero2.astro index 9f68674..411786d 100644 --- a/src/components/widgets/Hero2.astro +++ b/src/components/widgets/Hero2.astro @@ -1,8 +1,7 @@ --- import { Icon } from 'astro-icon/components'; import { Picture } from '@astrojs/image/components'; - -import type { CallToAction } from '~/components/widgets/CallToAction.astro'; +import { CallToAction } from '~/types'; export interface Props { title?: string; @@ -39,7 +38,9 @@ const { }
{subtitle &&

} -

+
{ callToAction && (
diff --git a/src/pages/landing/startup.astro b/src/pages/landing/startup.astro index c7d032d..63e9c16 100644 --- a/src/pages/landing/startup.astro +++ b/src/pages/landing/startup.astro @@ -10,6 +10,7 @@ import Features2 from '~/components/widgets/Features2.astro'; import Features from '~/components/widgets/Features.astro'; import Stats from '~/components/widgets/Stats.astro'; import Features3 from '~/components/widgets/Features3.astro'; +import FAQs from '~/components/widgets/FAQs.astro'; const metadata = { title: 'Startup Landing Page', @@ -139,6 +140,48 @@ const metadata = { ]} /> + + + + +
+
+
+