From 49a385d3668bfbdb771f4748418a2923e59f9a8c Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Mon, 28 Jul 2025 13:18:54 +0200 Subject: [PATCH] add faq --- src/app/contact/page.tsx | 33 ++++++ src/components/ContactHero.tsx | 164 ++++++++++++++++++++++++++++++ src/components/Faqs.tsx | 42 ++++---- src/components/Header.tsx | 2 - src/components/Header_darkbg.tsx | 3 +- src/components/PersonTemplate.tsx | 6 +- src/components/Quote.tsx | 2 +- 7 files changed, 224 insertions(+), 28 deletions(-) create mode 100644 src/app/contact/page.tsx create mode 100644 src/components/ContactHero.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..2fa797f --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,33 @@ +import { CallToAction } from '@/components/CallToAction' +import { Faqs } from '@/components/Faqs' +import { Footer } from '@/components/Footer' +import { Header_darkbg } from '@/components/Header_darkbg' +import { HomeAbout } from '@/components/HomeAbout' +import { Hero } from '@/components/Hero' +import { Pricing } from '@/components/Pricing' +import { PrimaryFeatures } from '@/components/PrimaryFeatures' +import { SecondaryFeatures } from '@/components/SecondaryFeatures' +import { Testimonials } from '@/components/Testimonials' +import { HomePrinciples } from '@/components/HomePrinciples' +import { HomeMilestones } from '@/components/HomeMilestones' +import { HomeVentures } from '@/components/HomeVentures' +import { Quote } from '@/components/Quote' +import { AboutHero } from '@/components/AboutHero' +import { AboutMission } from '@/components/AboutMission' +import { AboutExperience } from '@/components/AboutExperience' +import { ContactHero } from '@/components/ContactHero' + +export default function Contact() { + return ( + <> + +
+ + + + +
+