7 Commits

Author SHA1 Message Date
c5a6606fa8 Merge version_4 into main
Merge version_4 into main
2026-05-17 11:20:31 +00:00
2cc63e1629 Update src/app/page.tsx 2026-05-17 11:20:28 +00:00
f0d47fc281 Merge version_4 into main
Merge version_4 into main
2026-05-17 11:19:55 +00:00
ea11425031 Update src/app/page.tsx 2026-05-17 11:19:49 +00:00
16df01e616 Merge version_3 into main
Merge version_3 into main
2026-05-17 11:17:50 +00:00
bc4c6ab50b Update src/app/page.tsx 2026-05-17 11:17:44 +00:00
60a112df64 Merge version_2 into main
Merge version_2 into main
2026-05-17 11:16:44 +00:00

View File

@@ -6,7 +6,7 @@ import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree'; import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import MediaAbout from '@/components/sections/about/MediaAbout'; import MediaAbout from '@/components/sections/about/MediaAbout';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
@@ -46,32 +46,16 @@ export default function LandingPage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardCarousel <HeroBillboard
background={{
variant: "gradient-bars"}}
title="Bringing Your Vision to Life" title="Bringing Your Vision to Life"
description="We are a full-service creative agency specializing in design, development, and strategic digital transformation." description="Schedule a conversation to get a customized roadmap for your digital growth."
tag="Freelance Agency" tag="Freelance Agency"
tagAnimation="slide-up" background={{ variant: "plain" }}
buttons={[ buttons={[
{ { text: "Book Your Strategy Call", href: "#contact" },
text: "Book Your Strategy Call", href: "#contact"},
]}
buttonAnimation="slide-up"
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/people-working-together-animation-studio_23-2149207983.jpg", imageAlt: "Studio Workspace"},
{
imageSrc: "http://img.b2bpic.net/free-photo/top-view-geometric-shapes-with-copy-space_23-2148830227.jpg", imageAlt: "Digital Geometric"},
{
imageSrc: "http://img.b2bpic.net/free-photo/mockup-copy-space-blank-screen-concept_53876-120374.jpg", imageAlt: "Minimalist Desk"},
{
imageSrc: "http://img.b2bpic.net/free-photo/diverse-work-team-multinational-company-analyzing-performance-metrics-projections-staff_482257-132812.jpg", imageAlt: "Team Brainstorm"},
{
imageSrc: "http://img.b2bpic.net/free-photo/close-up-modern-laptop-with-rate-charts-display-while-man-woman-working-business-project-design-computer-screen-with-data-chart-information-finance-analysis-desk_482257-40065.jpg", imageAlt: "UI Development"},
{
imageSrc: "http://img.b2bpic.net/free-photo/modern-minimalist-office-black-white_23-2151777529.jpg", imageAlt: "Office Interior"},
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/people-working-together-animation-studio_23-2149207983.jpg"
imageAlt="Studio Workspace"
/> />
</div> </div>
@@ -193,8 +177,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplit <ContactSplit
useInvertedBackground={false} useInvertedBackground={false}
background={{ background={{ variant: "plain" }}
variant: "plain"}}
tag="Let's Talk" tag="Let's Talk"
title="Ready to Start?" title="Ready to Start?"
description="Let's discuss your next project and build something incredible together." description="Let's discuss your next project and build something incredible together."
@@ -237,4 +220,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }