Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 569b81cd49 | |||
| d1fb535979 | |||
| 014fd3d469 | |||
| ba2e00aedd | |||
| 9c1f4da5a3 | |||
| 07375dc322 | |||
| dada828e31 | |||
| 3be2c0b89f | |||
| e65a220176 | |||
| 23808ada2e | |||
| 73e9009a51 |
@@ -1,59 +1,21 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Raleway } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const raleway = Raleway({
|
||||
variable: "--font-raleway", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Montro Protection | Expert Security Services NYC", description: "Licensed, bonded, and insured security services for venues, events, and residential properties. 30+ years of expertise. Customized solutions. Satisfaction guaranteed.", keywords: "security agency, NYC security, event security, venue protection, residential security, professional guards, licensed security", metadataBase: new URL("https://montroprotection.com"),
|
||||
alternates: {
|
||||
canonical: "https://montroprotection.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Montro Protection | Unparalleled Security Expertise", description: "Expert security services for venues, events, and properties across New York. Licensed, bonded, and personally trained professionals.", url: "https://montroprotection.com", siteName: "Montro Protection", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/airport-security-officer-using-hand-held-metal-detector-check-commuter_107420-95855.jpg", alt: "Professional security team from Montro Protection"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Montro Protection | Security Excellence", description: "Professional security services for NYC venues, events, and residences.", images: ["http://img.b2bpic.net/free-photo/airport-security-officer-using-hand-held-metal-detector-check-commuter_107420-95855.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
title: "Montro Protection - Professional Security Services", description: "Unparalleled security expertise for venues, special events, and commercial/residential properties. Licensed, bonded, insured, and personally trained."
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1421,7 +1383,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -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}
|
||||
/>
|
||||
@@ -60,6 +61,7 @@ export default function LandingPage() {
|
||||
title="Why Choose Montro Protection"
|
||||
description="We deliver comprehensive security solutions tailored to your unique needs, backed by decades of professional experience and industry credentials."
|
||||
tag="Our Advantages"
|
||||
tagIcon={Shield}
|
||||
negativeCard={{
|
||||
items: [
|
||||
"Unlicensed, unvetted personnel", "No industry certifications", "Inconsistent service quality", "Limited availability"
|
||||
@@ -86,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"
|
||||
@@ -101,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"
|
||||
@@ -117,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&_wi=1", 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&_wi=2", 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."
|
||||
@@ -210,4 +227,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user