Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #6.
This commit is contained in:
2026-05-15 09:00:07 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
@@ -141,40 +141,39 @@ export default function LandingPage() {
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
textboxLayout="split"
useInvertedBackground={false}
<FaqSplitText
sideTitle="Frequently Asked Questions"
sideDescription="Answers to clarify your journey."
faqsAnimation="blur-reveal"
faqs={[
{ id: "q1", title: "Is the account secure?", content: "Absolutely. We utilize top-tier encryption." },
{ id: "q2", title: "Can I upgrade anytime?", content: "Yes, seamless upgrades are available." },
{ id: "q3", title: "Is there support available?", content: "Our concierge team is at your service 24/7." },
]}
mediaAnimation="blur-reveal"
title="Frequently Asked Questions"
description="Answers to clarify your journey."
faqsAnimation="blur-reveal"
imageSrc="http://img.b2bpic.net/free-photo/refined-vintage-library-with-wooden-shelves-classic-green-lamps_482257-119633.jpg"
imageAlt="Refined vintage library with wooden shelves"
useInvertedBackground={false}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={true}
<ContactSplit
tag="Concierge"
title="Need a Personal Consultation?"
description="Our experts are ready to assist with your specialized research requirements."
background={{ variant: "sparkles-gradient" }}
text="Your journey to excellence starts with a conversation. Reach out to our concierge."
buttons={[{ text: "Contact Concierge", href: "#" }]}
imageSrc="http://img.b2bpic.net/free-photo/refined-vintage-library-with-wooden-shelves-classic-green-lamps_482257-119633.jpg"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
<FooterBaseCard
logoText="THE STUDY"
leftLink={{ text: "Terms of Service", href: "#" }}
rightLink={{ text: "Privacy Policy", href: "#" }}
columns={[
{ title: "Product", items: [{ label: "Security", href: "#" }, { label: "Analytics", href: "#" }] },
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Careers", href: "#" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}