7 Commits

Author SHA1 Message Date
c06583e38a Merge version_3 into main
Merge version_3 into main
2026-05-06 19:06:14 +00:00
30dedc75e0 Update src/app/page.tsx 2026-05-06 19:06:11 +00:00
694646d1b2 Merge version_2 into main
Merge version_2 into main
2026-05-06 19:00:58 +00:00
cfd8938a59 Update src/app/page.tsx 2026-05-06 19:00:55 +00:00
f46b40edfb Merge version_2 into main
Merge version_2 into main
2026-05-06 19:00:28 +00:00
c377294ab3 Update src/app/page.tsx 2026-05-06 19:00:25 +00:00
a40fe24f63 Merge version_1 into main
Merge version_1 into main
2026-05-06 18:58:23 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import FooterBase from '@/components/sections/footer/FooterBase';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
@@ -172,7 +172,11 @@ export default function LandingPage() {
</div>
<div id="faq" data-section="faq">
<FaqSplitText
<FaqDouble
title="Frequently Asked Questions"
description="Answers to common inquiries about our creative services and process."
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{
@@ -182,61 +186,43 @@ export default function LandingPage() {
{
id: "q3", title: "How do we get started?", content: "Book a discovery call through our contact section and we'll schedule an initial consultation."},
]}
sideTitle="Frequently Asked Questions"
faqsAnimation="slide-up"
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={true}
background={{
variant: "radial-gradient"}}
<ContactCenter
tag="Elevate Your Brand"
title="Ready to Start?"
description="Let's create something extraordinary together."
buttons={[
{
text: "Book a Call", href: "#"},
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/dark-green-water_23-2147933832.jpg"
<FooterBase
logoText="AUREX STUDIO"
columns={[
{
title: "Services", items: [
{
label: "Brand Identity", href: "#"},
{
label: "Logo Design", href: "#"},
{
label: "Web Design", href: "#"},
{
label: "Social Media", href: "#"},
{ label: "Brand Identity", href: "#" },
{ label: "Logo Design", href: "#" },
{ label: "Web Design", href: "#" },
{ label: "Social Media", href: "#" },
],
},
{
title: "Company", items: [
{
label: "About Us", href: "#"},
{
label: "Our Process", href: "#"},
{
label: "Case Studies", href: "#"},
{
label: "Contact", href: "#"},
{ label: "About Us", href: "#" },
{ label: "Our Process", href: "#" },
{ label: "Case Studies", href: "#" },
{ label: "Contact", href: "#" },
],
},
{
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
],
},
]}