Update src/app/page.tsx

This commit is contained in:
2026-05-14 21:25:49 +00:00
parent 39f8a1ac92
commit 73e98697f1

View File

@@ -7,7 +7,7 @@ import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureBento from '@/components/sections/feature/FeatureBento';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroCentered from '@/components/sections/hero/HeroCentered';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
@@ -41,29 +41,14 @@ export default function LandingPage() {
</div>
<div id="home" data-section="home">
<HeroCentered
background={{ variant: "plain" }}
title="Quality Staples for Your Business"
description="Sam's Trading delivers premium rice, sugar, and cooking oil across Lebanon and Iraq. Trusted quality for every home and business."
avatars={[
{ src: "http://img.b2bpic.net/free-photo/confident-successful-middle-aged-business-leader_1262-4872.jpg", alt: "Business Leader" },
{ src: "http://img.b2bpic.net/free-photo/closeup-confident-asian-man-with-arms-crossed_1262-884.jpg", alt: "Business Partner" },
{ src: "http://img.b2bpic.net/free-photo/businessman-smiling-camera_107420-95907.jpg", alt: "Manager" },
{ src: "http://img.b2bpic.net/free-photo/multi-ethnic-team-business-trip_1098-15488.jpg", alt: "Team Member" },
{ src: "http://img.b2bpic.net/free-photo/positive-business-partners-meeting-office-building-shaking-hands-with-each-other-side-view-medium-shot-corporate-communication-handshake-concept_74855-7728.jpg", alt: "Partner" }
]}
<HeroBillboard
background={{ variant: "gradient-bars" }}
title="Sam's Trading - Wholesale Excellence"
description="Premium quality rice, sugar, and cooking oil delivered across Lebanon and Iraq. Your reliable supply chain partner."
buttons={[
{ text: "Explore Products", href: "#products" },
{ text: "Contact Us", href: "#contact" }
]}
avatarText="Trusted by 500+ partners"
marqueeItems={[
{ type: "text-icon", text: "Reliable Logistics", icon: Truck },
{ type: "text-icon", text: "Bulk Pricing", icon: DollarSign },
{ type: "text-icon", text: "Quality Assured", icon: CheckCircle },
{ type: "text-icon", text: "Global Supply", icon: Globe },
{ type: "text-icon", text: "Regional Experts", icon: MapPin }
]}
/>
</div>
@@ -167,4 +152,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}