9 Commits

Author SHA1 Message Date
72e47fe4ce Update src/app/page.tsx 2026-03-07 19:43:42 +00:00
b2e1952bea Switch to version 1: modified src/app/styles/base.css 2026-03-07 19:41:38 +00:00
21ed08b8f3 Switch to version 1: modified src/app/layout.tsx 2026-03-07 19:41:37 +00:00
9090a50411 Merge version_2 into main
Merge version_2 into main
2026-03-07 03:15:55 +00:00
98d8feba7a Update src/app/styles/base.css 2026-03-07 03:15:51 +00:00
441efc4d50 Update src/app/layout.tsx 2026-03-07 03:15:51 +00:00
b6e254177e Merge version_1 into main
Merge version_1 into main
2026-03-07 02:49:42 +00:00
59c13437ff Merge version_1 into main
Merge version_1 into main
2026-03-07 02:48:52 +00:00
624c701abe Merge version_1 into main
Merge version_1 into main
2026-03-07 02:48:00 +00:00

View File

@@ -1,6 +1,7 @@
"use client"; "use client";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import TextAbout from '@/components/sections/about/TextAbout'; import TextAbout from '@/components/sections/about/TextAbout';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
@@ -35,6 +36,25 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="hero" data-section="hero">
<HeroOverlay
title="Scale Your Performance Marketing"
description="Data-driven strategies that deliver results. We help e-commerce brands achieve 2x-5x+ ROAS through precision targeting and continuous optimization."
tag="Performance Marketing Agency"
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/people-analyzing-checking-finance-graphs-office_23-2150377179.jpg?_wi=1"
imageAlt="Performance marketing analytics dashboard"
textPosition="bottom-left"
showBlur={true}
showDimOverlay={false}
buttons={[
{ text: "Book Strategy Call", href: "#contact" },
{ text: "Explore Case Studies", href: "#testimonial" }
]}
buttonAnimation="slide-up"
/>
</div>
<div id="testimonial" data-section="testimonial"> <div id="testimonial" data-section="testimonial">
<TestimonialCardSix <TestimonialCardSix
title="Proven Results" title="Proven Results"
@@ -108,4 +128,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }