Merge version_4 into main

Merge version_4 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-05-18 14:05:22 +00:00

View File

@@ -2,15 +2,15 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
export default function LandingPage() {
return (
@@ -121,21 +121,22 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSix
<TestimonialCardThirteen
title="Client Success Stories"
animationType="slide-up"
textboxLayout="split"
description="Trusted by industry leaders to deliver results."
useInvertedBackground={false}
showRating={true}
testimonials={[
{ id: "1", name: "Dilya S.", handle: "@dilya_tech", testimonial: "The AI transformation at our firm was seamless and highly effective." },
{ id: "2", name: "Aziz K.", handle: "@aziz_dev", testimonial: "Incredible efficiency gains in just under three months of deployment." },
{ id: "1", name: "Dilya S.", handle: "@dilya_tech", testimonial: "The AI transformation at our firm was seamless and highly effective.", rating: 5 },
{ id: "2", name: "Aziz K.", handle: "@aziz_dev", testimonial: "Incredible efficiency gains in just under three months of deployment.", rating: 5 },
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
<ContactSplit
tag="Connect"
title="Ready to innovate?"
description="Our Tashkent team is standing by to help you scale your business with AI."
@@ -145,12 +146,13 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="AI Uzbekistan"
<FooterSimple
columns={[
{ items: [{ label: "About Us", href: "#" }, { label: "Careers", href: "#" }] },
{ items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] }
{ title: "Solutions", items: [{ label: "About Us", href: "#" }, { label: "Careers", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] }
]}
bottomLeftText="© 2024 AI Uzbekistan"
bottomRightText="All rights reserved."
/>
</div>
</ReactLenis>