Update src/app/page.tsx

This commit is contained in:
2026-03-03 20:58:20 +00:00
parent 9c1f4da5a3
commit ba2e00aedd

View File

@@ -9,6 +9,7 @@ import ProductCardOne from "@/components/sections/product/ProductCardOne";
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
import ContactFaq from "@/components/sections/contact/ContactFaq";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import { Shield, Phone } from "lucide-react";
export default function LandingPage() {
@@ -49,7 +50,7 @@ export default function LandingPage() {
{ text: "Schedule Consultation", href: "contact" },
{ text: "Learn More", href: "about" }
]}
imageSrc="http://img.b2bpic.net/free-photo/airport-security-officer-using-hand-held-metal-detector-check-commuter_107420-95855.jpg"
imageSrc="https://images.unsplash.com/photo-1519558260116-ea14baf05d37?w=800&h=600&fit=crop"
imageAlt="Professional security team"
showDimOverlay={true}
/>
@@ -87,7 +88,7 @@ export default function LandingPage() {
{ value: "30+", title: "Years of Combined Experience" },
{ value: "100%", title: "Satisfaction Guarantee" }
]}
imageSrc="http://img.b2bpic.net/free-photo/investors-reading-factory-paperwork-laptop-reviewing-financial-statements_482257-123452.jpg"
imageSrc="https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop"
imageAlt="Security expertise and professional team"
mediaAnimation="slide-up"
metricsAnimation="slide-up"
@@ -102,13 +103,13 @@ export default function LandingPage() {
tag="Our Expertise"
products={[
{
id: "1", name: "Art & Fashion", price: "Premium Protection", imageSrc: "http://img.b2bpic.net/free-photo/internationals-people-standing-cafe-with-shopping-bags_1157-31453.jpg", imageAlt: "Art and fashion security"
id: "1", name: "Art & Fashion", price: "Premium Protection", imageSrc: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=600&fit=crop", imageAlt: "Art and fashion security"
},
{
id: "2", name: "Special Events", price: "End-to-End Coverage", imageSrc: "http://img.b2bpic.net/free-photo/blured-photo-crowded-concert-hall-with-scene-stage-lights-with-people-rock-performance_627829-6110.jpg", imageAlt: "Event security and crowd management"
id: "2", name: "Special Events", price: "End-to-End Coverage", imageSrc: "https://images.unsplash.com/photo-1492684223066-81342ee5ff30?w=800&h=600&fit=crop", imageAlt: "Event security and crowd management"
},
{
id: "3", name: "Hospitality", price: "Discreet Excellence", imageSrc: "http://img.b2bpic.net/free-photo/concierge-assists-with-checkin-hotel_482257-90464.jpg", imageAlt: "Hotel and hospitality security"
id: "3", name: "Hospitality", price: "Discreet Excellence", imageSrc: "https://images.unsplash.com/photo-1631049307264-da0ec9d70304?w=800&h=600&fit=crop", imageAlt: "Hotel and hospitality security"
}
]}
gridVariant="three-columns-all-equal-width"
@@ -118,20 +119,35 @@ export default function LandingPage() {
/>
</div>
<div id="cities" data-section="cities">
<SocialProofOne
title="Montro Protection Coverage Areas"
description="Trusted security services across New York's premier neighborhoods and boroughs. We protect the properties and venues that matter most."
tag="Service Locations"
names={[
"Manhattan", "Brooklyn", "Queens", "Bronx", "Staten Island", "Long Island"
]}
textboxLayout="default"
useInvertedBackground={false}
speed={40}
showCard={true}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve
testimonials={[
{
id: "1", name: "Marcus Johnson", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "Marcus Johnson"
id: "1", name: "Marcus Johnson", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=400&fit=crop", imageAlt: "Marcus Johnson"
},
{
id: "2", name: "Sarah Chen", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", imageAlt: "Sarah Chen"
id: "2", name: "Sarah Chen", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=400&h=400&fit=crop", imageAlt: "Sarah Chen"
},
{
id: "3", name: "David Rothstein", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=3", imageAlt: "David Rothstein"
id: "3", name: "David Rothstein", imageSrc: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=400&h=400&fit=crop", imageAlt: "David Rothstein"
},
{
id: "4", name: "Jennifer Martinez", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=4", imageAlt: "Jennifer Martinez"
id: "4", name: "Jennifer Martinez", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=400&fit=crop", imageAlt: "Jennifer Martinez"
}
]}
cardTitle="Trusted by hundreds of venues, events, and residences across New York. Our clients rely on us for peace of mind and professional protection."
@@ -211,4 +227,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}