12 Commits

Author SHA1 Message Date
2016ba2236 Merge version_3 into main
Merge version_3 into main
2026-05-15 09:00:37 +00:00
7b0b7dae3b Update src/app/page.tsx 2026-05-15 09:00:34 +00:00
b60d3fd243 Merge version_3 into main
Merge version_3 into main
2026-05-15 09:00:07 +00:00
5b8a0b025e Update src/app/page.tsx 2026-05-15 09:00:04 +00:00
6eb16525c6 Switch to version 1: modified src/app/page.tsx 2026-05-15 08:59:31 +00:00
5b09360044 Merge version_2 into main
Merge version_2 into main
2026-05-15 08:52:09 +00:00
b25a669a42 Update src/app/page.tsx 2026-05-15 08:52:03 +00:00
90154e7e0e Merge version_2 into main
Merge version_2 into main
2026-05-15 08:51:36 +00:00
12b3e324b0 Update src/app/page.tsx 2026-05-15 08:51:33 +00:00
8249f3f6a8 Merge version_1 into main
Merge version_1 into main
2026-05-15 08:44:01 +00:00
7459ee1d30 Merge version_1 into main
Merge version_1 into main
2026-05-15 08:43:32 +00:00
76cbac64f8 Merge version_1 into main
Merge version_1 into main
2026-05-15 08:43:00 +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,40 @@ 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: "#" }]}
useInvertedBackground={false}
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>
);
}
}