7 Commits

Author SHA1 Message Date
2700a81872 Merge version_3 into main
Merge version_3 into main
2026-03-06 10:57:45 +00:00
afe932fdaf Update src/app/page.tsx 2026-03-06 10:57:41 +00:00
4646050b72 Update src/app/layout.tsx 2026-03-06 10:57:41 +00:00
48d80eb89e Merge version_2 into main
Merge version_2 into main
2026-03-06 10:55:06 +00:00
1cb8b0b796 Update src/app/page.tsx 2026-03-06 10:55:02 +00:00
9f0ce00df3 Update src/app/layout.tsx 2026-03-06 10:55:01 +00:00
f8226d4946 Merge version_1 into main
Merge version_1 into main
2026-03-06 10:52:39 +00:00
2 changed files with 26 additions and 50 deletions

View File

@@ -1,53 +1,23 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Manrope } from "next/font/google"; import "./styles/variables.css";
import "./globals.css"; import "./styles/base.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({ const inter = Inter({
variable: "--font-inter", subsets: ["latin"], variable: "--font-inter", subsets: ["latin"],
}); });
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Professional Security & Cleaning Services | SecureClean Pro", description: "24/7 security monitoring and expert commercial cleaning services. Trusted by 500+ clients. Free consultation today.", keywords: "security services, commercial cleaning, facility management, 24/7 surveillance, janitorial services", metadataBase: new URL("https://securecleanpro.com"), title: "Structure Corp - Security & Cleaning Services", description: "Professional security monitoring and commercial cleaning services for businesses and homes. 24/7 surveillance, expert cleaning teams, and biohazard remediation."};
alternates: {
canonical: "https://securecleanpro.com"},
openGraph: {
title: "Professional Security & Cleaning Services", description: "Comprehensive security solutions and cleaning services for businesses and properties.", url: "https://securecleanpro.com", siteName: "SecureClean Pro", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/team-leader-following-delivery-truck-through-urban-traffic_482257-94095.jpg", alt: "Professional security and cleaning services"},
],
},
twitter: {
card: "summary_large_image", title: "SecureClean Pro - Security & Cleaning Services", description: "24/7 security monitoring and expert commercial cleaning", images: ["http://img.b2bpic.net/free-photo/team-leader-following-delivery-truck-through-urban-traffic_482257-94095.jpg"],
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.variable}>{children}
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1415,7 +1385,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -36,7 +36,7 @@ export default function LandingPage() {
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ text: "Get Quote", href: "contact" }} button={{ text: "Get Quote", href: "contact" }}
brandName="SecureClean Pro" brandName="Structure Corp"
/> />
</div> </div>
@@ -63,7 +63,7 @@ export default function LandingPage() {
tag="About Us" tag="About Us"
tagIcon={CheckCircle} tagIcon={CheckCircle}
title="15+ Years of Excellence in Security and Facility Management" title="15+ Years of Excellence in Security and Facility Management"
description="SecureClean Pro Leadership" description="Structure Corp Leadership"
subdescription="Industry-Leading Service Provider" subdescription="Industry-Leading Service Provider"
icon={Award} icon={Award}
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-woman-cleaning-indoors_23-2150454503.jpg" imageSrc="http://img.b2bpic.net/free-photo/medium-shot-woman-cleaning-indoors_23-2150454503.jpg"
@@ -89,7 +89,8 @@ export default function LandingPage() {
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-people-cleaning-office_23-2150454494.jpg", imageAlt: "Commercial cleaning office floor" imageSrc: "http://img.b2bpic.net/free-photo/full-shot-people-cleaning-office_23-2150454494.jpg", imageAlt: "Commercial cleaning office floor"
}, },
{ {
id: "3", title: "Specialized Biohazard Cleanup", author: "Certified Specialists", description: "Professional remediation and sanitization services meeting all regulatory standards for safety and compliance.", tags: ["Biohazard", "Certified", "Compliance"], imageSrc: "http://img.b2bpic.net/free-photo/low-angle-view-entrepreneur-wearing-face-mask-while-using-computer-working-coronavirus-epidemic_637285-6481.jpg", imageAlt: "Professional cleanup sanitization service" id: "3", title: "Specialized Biohazard Cleanup", author: "Certified Specialists", description: "Professional remediation and sanitization services meeting all regulatory standards for safety and compliance.", tags: ["Biohazard", "Certified", "Compliance"],
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-view-entrepreneur-wearing-face-mask-while-using-computer-working-coronavirus-epidemic_637285-6481.jpg", imageAlt: "Professional cleanup sanitization service"
} }
]} ]}
animationType="slide-up" animationType="slide-up"
@@ -100,7 +101,7 @@ export default function LandingPage() {
<div id="highlights" data-section="highlights"> <div id="highlights" data-section="highlights">
<ProductCardTwo <ProductCardTwo
title="Why Choose SecureClean Pro" title="Why Choose Structure Corp"
description="Industry-leading service packages designed for maximum protection and cleanliness with professional-grade results." description="Industry-leading service packages designed for maximum protection and cleanliness with professional-grade results."
products={[ products={[
{ {
@@ -152,22 +153,28 @@ export default function LandingPage() {
tag="Client Testimonials" tag="Client Testimonials"
testimonials={[ testimonials={[
{ {
id: "1", name: "Robert Martinez", role: "Facility Manager", company: "Downtown Business Complex", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/modern-office-person-face-worker_1157-3666.jpg", imageAlt: "professional man facility manager portrait" id: "1", name: "Robert Martinez", role: "Facility Manager", company: "Downtown Business Complex", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/modern-office-person-face-worker_1157-3666.jpg", imageAlt: "professional man facility manager portrait"
}, },
{ {
id: "2", name: "Jennifer Chen", role: "Operations Director", company: "Tech Park Industries", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-office-looking-camera-holding-tablet-hands_1262-20488.jpg", imageAlt: "professional woman operations director portrait" id: "2", name: "Jennifer Chen", role: "Operations Director", company: "Tech Park Industries", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/woman-office-looking-camera-holding-tablet-hands_1262-20488.jpg", imageAlt: "professional woman operations director portrait"
}, },
{ {
id: "3", name: "Michael Thompson", role: "Property Owner", company: "Premium Office Towers", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg", imageAlt: "professional man property owner portrait" id: "3", name: "Michael Thompson", role: "Property Owner", company: "Premium Office Towers", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg", imageAlt: "professional man property owner portrait"
}, },
{ {
id: "4", name: "Angela Rodriguez", role: "Hospital Administrator", company: "Metropolitan Health Center", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-posing-with-digital-tablet_329181-10340.jpg", imageAlt: "professional woman hospital administrator portrait" id: "4", name: "Angela Rodriguez", role: "Hospital Administrator", company: "Metropolitan Health Center", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-posing-with-digital-tablet_329181-10340.jpg", imageAlt: "professional woman hospital administrator portrait"
}, },
{ {
id: "5", name: "David Kumar", role: "Retail Store Manager", company: "Shopping District Alliance", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-man-with-backpack_23-2149915917.jpg", imageAlt: "professional man retail manager portrait" id: "5", name: "David Kumar", role: "Retail Store Manager", company: "Shopping District Alliance", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-man-with-backpack_23-2149915917.jpg", imageAlt: "professional man retail manager portrait"
}, },
{ {
id: "6", name: "Susan Williams", role: "School Principal", company: "Riverside Education District", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/high-angle-smiley-woman-reading_23-2148396352.jpg", imageAlt: "professional woman school principal portrait" id: "6", name: "Susan Williams", role: "School Principal", company: "Riverside Education District", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-smiley-woman-reading_23-2148396352.jpg", imageAlt: "professional woman school principal portrait"
} }
]} ]}
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
@@ -197,8 +204,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBase <FooterBase
logoText="SecureClean Pro" logoText="Structure Corp"
copyrightText="© 2025 SecureClean Pro. All rights reserved." copyrightText="© 2025 Structure Corp. All rights reserved."
columns={[ columns={[
{ {
title: "Services", items: [ title: "Services", items: [