Merge version_5 into main

Merge version_5 into main
This commit was merged in pull request #7.
This commit is contained in:
2026-05-09 08:28:46 +00:00

View File

@@ -3,16 +3,14 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroCentered from '@/components/sections/hero/HeroCentered';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import { Globe, TrendingUp, Zap } from "lucide-react";
import FaqDouble from '@/components/sections/faq/FaqDouble';
import { Zap, Target, BookOpen } from "lucide-react";
export default function LandingPage() {
return (
@@ -39,7 +37,7 @@ export default function LandingPage() {
]}
brandName="Azmai"
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DTkySybknVncRtPCpXmW7wtq7L/uploaded-1778314749171-eb8li2ef.png"
logoClassName="scale-150"
logoClassName="scale-[2.5]"
/>
</div>
@@ -57,8 +55,8 @@ export default function LandingPage() {
]}
avatarText="Trusted by 500+ top brands"
buttons={[
{ text: "Get in Touch", href: "#contact" },
{ text: "View Work", href: "#features" }
{ text: "Schedule Your Discovery Call", href: "#contact" },
{ text: "View Our Case Studies", href: "#features" }
]}
buttonAnimation="slide-up"
marqueeItems={[
@@ -74,6 +72,8 @@ export default function LandingPage() {
<div id="about" data-section="about">
<SplitAbout
textboxLayout="split"
tag="Proven Frameworks"
tagIcon={Target}
useInvertedBackground={false}
title="Data-Driven Creativity."
description="We bridge the gap between viral-ready social media content and world-class digital product development. Our team is obsessed with metrics, speed, and design perfection."
@@ -124,40 +124,14 @@ export default function LandingPage() {
useInvertedBackground={false}
metrics={[
{ id: "1", icon: Zap, title: "Viral Reach", value: "100M+" },
{ id: "2", icon: TrendingUp, title: "Conversion Increase", value: "240%" },
{ id: "3", icon: Globe, title: "Web Projects", value: "150+" }
{ id: "2", icon: BookOpen, title: "Case Studies", value: "50+" },
{ id: "3", icon: Target, title: "Conversion Increase", value: "240%" }
]}
title="Results You Can Measure"
description="We don't do vanity metrics. We focus on real growth that drives your bottom line."
/>
</div>
<div id="socialProof" data-section="socialProof">
<SocialProofOne
textboxLayout="default"
useInvertedBackground={true}
names={["TechCorp", "Innovate", "GrowthLabs", "PixelPerfect", "ViralFlow", "CloudNet", "DigitalEmpire"]}
title="Trusted by Industry Leaders"
description="We partner with brands that are ready to scale to the next level."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve
useInvertedBackground={false}
testimonials={[
{ id: "1", name: "Sarah J.", imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businessman-posing-outside_74855-1183.jpg" },
{ id: "2", name: "Michael C.", imageSrc: "http://img.b2bpic.net/free-photo/photo-retoucher-sitting-creative-workplace-looking-camera-smiling_482257-18778.jpg" },
{ id: "3", name: "Emily R.", imageSrc: "http://img.b2bpic.net/free-photo/research-agency-employee-sitting-office-while-using-work-computer-review-startup-project-marketing-strategy-sales-department-team-leader-developing-financial-plan-order-stabilize-budget_482257-38918.jpg" },
{ id: "4", name: "David K.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-posing-with-blue-jacket_23-2149020771.jpg" },
{ id: "5", name: "Alex P.", imageSrc: "http://img.b2bpic.net/free-photo/man-checking-his-checklist_1153-1152.jpg" }
]}
cardTitle="Client Success"
cardTag="Testimonials"
cardAnimation="slide-up"
/>
</div>
<div id="faq" data-section="faq">
<FaqDouble
textboxLayout="split"
@@ -178,7 +152,7 @@ export default function LandingPage() {
useInvertedBackground={false}
background={{ variant: "plain" }}
text="Let's discuss how we can help your brand grow."
buttons={[{ text: "Get in touch", href: "#" }]}
buttons={[{ text: "Schedule Your Discovery Call", href: "#" }]}
/>
</div>
@@ -193,4 +167,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}