Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-05-23 21:30:21 +00:00

View File

@@ -2,15 +2,15 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import TextAbout from '@/components/sections/about/TextAbout';
import { CheckCircle, Server, Users, Shield, Lock, Zap, Gauge } from "lucide-react";
@@ -108,59 +108,59 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSix
animationType="slide-up"
textboxLayout="default"
<TestimonialCardTwelve
cardAnimation="slide-up"
useInvertedBackground={false}
cardTitle="Partner Feedback"
cardTag="Testimonials"
testimonials={[
{ id: "1", name: "Elena Ross", handle: "@elena_ceo", testimonial: "NexTech transformed our internal systems and increased efficiency by 300%.", imageSrc: "http://img.b2bpic.net/free-photo/financial-department-team-leader-researching-marketing-ideas-while-analyzing-company-expenses-report-startup-project-manager-developing-budget-growth-solutions-while-brainstorming-promoting-strategy_482257-38904.jpg" },
{ id: "2", name: "Mark Chen", handle: "@mark_tech", testimonial: "Their engineering team is the best I've ever worked with. Truly top tier.", imageSrc: "http://img.b2bpic.net/free-photo/serious-father-posing-with-arms-crossed_23-2148414861.jpg" },
{ id: "3", name: "Sophia V", handle: "@sophia_prod", testimonial: "The project delivery was flawless. Highly professional team.", imageSrc: "http://img.b2bpic.net/free-photo/videographer-smiling-camera-working-computer-editing-video-footage-audio-app-sitting-mo_482257-2649.jpg" },
{ id: "4", name: "David W", handle: "@david_data", testimonial: "Exceptional understanding of complex backend architectures.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-competitive-employee_1098-2870.jpg" },
{ id: "5", name: "Alex K", handle: "@alex_arch", testimonial: "Innovative solutions and dedicated support at every phase.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-personal-shopper-working_23-2148924153.jpg" },
{ id: "1", name: "Elena Ross", imageSrc: "http://img.b2bpic.net/free-photo/financial-department-team-leader-researching-marketing-ideas-while-analyzing-company-expenses-report-startup-project-manager-developing-budget-growth-solutions-while-brainstorming-promoting-strategy_482257-38904.jpg" },
{ id: "2", name: "Mark Chen", imageSrc: "http://img.b2bpic.net/free-photo/serious-father-posing-with-arms-crossed_23-2148414861.jpg" },
{ id: "3", name: "Sophia V", imageSrc: "http://img.b2bpic.net/free-photo/videographer-smiling-camera-working-computer-editing-video-footage-audio-app-sitting-mo_482257-2649.jpg" },
]}
title="Partner Feedback"
description="We are proud to serve some of the most forward-thinking companies in the world."
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitText
<FaqDouble
useInvertedBackground={false}
faqs={[
{ id: "1", title: "How do you handle project timelines?", content: "We follow agile methodologies to ensure clear milestones and rapid delivery." },
{ id: "2", title: "Can you scale existing applications?", content: "Absolutely, optimization and scaling is one of our primary core competencies." },
{ id: "3", title: "Do you offer post-launch support?", content: "Yes, we provide ongoing maintenance packages tailored to your requirements." },
]}
sideTitle="Common Inquiries"
sideDescription="Everything you need to know about our workflow and processes."
title="Common Inquiries"
description="Everything you need to know about our workflow and processes."
faqsAnimation="blur-reveal"
textboxLayout="split"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
<ContactSplitForm
useInvertedBackground={false}
background={{ variant: "rotated-rays-animated" }}
tag="Ready to Start?"
title="Let's Engineer Your Vision"
description="Send us your project details and our team will get back to you within 24 hours."
inputs={[
{ name: "email", type: "email", placeholder: "Email Address", required: true },
{ name: "message", type: "text", placeholder: "Project Details", required: true }
]}
imageSrc="http://img.b2bpic.net/free-photo/office-desktop-with-laptop-analytics_23-2148174058.jpg"
mediaAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-vector/technology-logos-pack_23-2147535507.jpg"
logoText="NexTech"
<FooterSimple
columns={[
{ title: "Navigation", items: [{ label: "Services", href: "#features" }, { label: "Metrics", href: "#metrics" }] },
{ title: "Support", items: [{ label: "Documentation", href: "#" }, { label: "Contact Us", href: "#contact" }] },
]}
bottomLeftText="© 2025 NexTech"
bottomRightText="Built with Precision"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}