Add src/app/[locale]/page.tsx

This commit is contained in:
2026-06-10 20:57:30 +00:00
parent bca33a9d74
commit e9828f8859

74
src/app/[locale]/page.tsx Normal file
View File

@@ -0,0 +1,74 @@
"use client";
import SplitAbout from '@/components/sections/about/SplitAbout';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
export default function LocalizedLandingPage() {
return (
<>
<div id="about" data-section="about">
<SplitAbout
textboxLayout="default"
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/network-connections_1048-7667.jpg"
imageAlt="Network connections"
title="Our Story & Mission"
description="We are a company dedicated to innovation and excellence, striving to deliver cutting-edge solutions for our clients."
bulletPoints={[
{ title: "Innovation driven", description: "Driving innovation across all our solutions." },
{ title: "Client-focused", description: "Prioritizing client needs and delivering tailored results." },
{ title: "Excellence in execution", description: "Committing to high-quality execution in every project." }
]}
/>
</div>
<div id="product" data-section="product">
<ProductCardThree
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Our Featured Products"
description="Explore our range of innovative products designed to meet your needs."
/>
</div>
<div id="team" data-section="team">
<TeamCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Meet Our Team"
description="A dedicated group of professionals passionate about technology and innovation."
members={[
{
id: "john-doe", name: "John Doe", role: "CEO", imageSrc: "http://img.b2bpic.net/free-photo/focused-woman-working-with-ai-chatbot-her-desktop-computer_482257-120813.jpg", imageAlt: "John Doe, CEO", description: "Leading our company with vision and expertise."
},
{
id: "jane-smith", name: "Jane Smith", role: "CTO", imageSrc: "http://img.b2bpic.net/free-photo/african-american-software-developer-does-visual-coding-creating-software_482257-127024.jpg", imageAlt: "Jane Smith, CTO", description: "Pioneering our technological advancements."
}
]}
/>
</div>
<div id="testimonial" data-section="testimonial">
<TestimonialCardFifteen
useInvertedBackground={false}
testimonial="Working with this team has been a game-changer for our business. Their expertise and dedication are unmatched."
rating={5}
ratingAnimation="slide-up"
author="Alice Johnson"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/focused-woman-working-with-ai-chatbot-her-desktop-computer_482257-120813.jpg", alt: "Alice Johnson"
}
]}
avatarsAnimation="slide-up"
/>
</div>
</>
);
}