Update src/app/page.tsx

This commit is contained in:
2026-03-26 12:20:15 +00:00
parent 309addb42e
commit a4d73b5ac3

View File

@@ -8,7 +8,6 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import { MapPin } from "lucide-react";
@@ -35,10 +34,12 @@ export default function LandingPage() {
name: "Home", id: "/"},
{
name: "About Us", id: "/about"},
{
name: "Our Team", id: "/team"},
{
name: "Products", id: "/products"},
{
name: "Why Choose Us", id: "#why-choose-us"},
name: "Why Choose Us", id: "/#why-choose-us"},
{
name: "Contact", id: "/contact"},
]}
@@ -186,45 +187,6 @@ export default function LandingPage() {
/>
</div>
<div id="about-page" data-section="about-page">
<TextSplitAbout
useInvertedBackground={false}
title="Our Story: Built on Trust, Grown with Community"
description={[
"Roots isn't just a general store; it's a cherished institution in Madhuban, Udaipur. For decades, we've prided ourselves on providing the highest quality products and personalized service, fostering a legacy of reliability and customer satisfaction.", "We've grown alongside our community, adapting to your needs while staying true to our core values of quality, integrity, and warmth. Discover the difference that true dedication makes in every item we offer."]}
buttons={[
{
text: "Learn More About Us", href: "/about"},
]}
/>
</div>
<div id="team-page" data-section="team-page">
<TeamCardEleven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
groups={[
{
id: "management", groupTitle: "Leadership & Operations", members: [
{
id: "owner", title: "Ramesh Singh", subtitle: "Founder & Managing Director", detail: "With decades of experience, Ramesh Singh oversees the daily operations and ensures that Roots upholds its legacy of trust and quality for every customer.", imageSrc: "http://img.b2bpic.net/free-photo/smart-indian-engineer-man-wearing-safety-helmet-doing-stock-tick-check-cardboard-stock-product-management-factory-warehouse-background_609648-1385.jpg", imageAlt: "Ramesh Singh, Founder and Managing Director"},
],
},
{
id: "staff", groupTitle: "Our Friendly Staff", members: [
{
id: "assistant", title: "Pooja Sharma", subtitle: "Store Assistant", detail: "Pooja is always ready to assist you with a smile, helping you find exactly what you need with her in-depth knowledge of our product range.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-holding-clay-pot_23-2148944979.jpg", imageAlt: "Pooja Sharma, Store Assistant"},
{
id: "support", title: "Anil Kumar", subtitle: "Customer Relations", detail: "Anil ensures that every customer leaves Roots happy and satisfied, offering personalized support and valuable recommendations.", imageSrc: "http://img.b2bpic.net/free-photo/parent-working-remotely-with-children-home_52683-109776.jpg", imageAlt: "Anil Kumar, Customer Relations"},
],
},
]}
title="Meet the Family Behind Your Trust"
description="At Roots, our strength lies in our dedicated team a family committed to serving you with warmth, expertise, and a genuine smile. We're here to make your shopping experience exceptional."
/>
</div>
<div id="products-page" data-section="products-page">
<ProductCardTwo
animationType="slide-up"
@@ -323,4 +285,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}