5 Commits

Author SHA1 Message Date
adf9e6533c Update src/app/page.tsx 2026-03-04 19:52:26 +00:00
e17e33491f Update src/app/layout.tsx 2026-03-04 19:52:26 +00:00
5ad7418bab Merge version_1 into main
Merge version_1 into main
2026-03-04 19:48:43 +00:00
ca565e0381 Merge version_1 into main
Merge version_1 into main
2026-03-04 19:47:31 +00:00
1c4918d2b3 Merge version_1 into main
Merge version_1 into main
2026-03-04 19:46:10 +00:00
2 changed files with 7 additions and 33 deletions

View File

@@ -1,45 +1,20 @@
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 { Open_Sans } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Triple J Power Washing | Professional Exterior Cleaning", description: "Premium power washing services for homes. Owner-operated, 5-star rated, fair pricing. Free estimates.", keywords: "power washing, pressure washing, house cleaning, driveway cleaning, exterior cleaning, local power washing", openGraph: { title: "Triple J Power Washing", description: "Professional power washing services for homes and businesses"};
title: "Triple J Power Washing — Bringing Homes Back to Life", description: "Professional, on-time power washing with fair pricing and guaranteed results.", type: "website", siteName: "Triple J Power Washing"},
twitter: {
card: "summary_large_image", title: "Triple J Power Washing", description: "Trusted exterior cleaning services in your area"},
};
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.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1407,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -47,7 +47,7 @@ export default function LandingPage() {
description="Professional, On-Time, Detail-Driven Power Washing That Makes Your Property Look Brand New Again." description="Professional, On-Time, Detail-Driven Power Washing That Makes Your Property Look Brand New Again."
tag="5-Star Rated • On-Time Guarantee • Owner On-Site • Fair Pricing" tag="5-Star Rated • On-Time Guarantee • Owner On-Site • Fair Pricing"
buttons={[ buttons={[
{ text: "Get a Free Estimate", href: "contact" }, { text: "Book Your Free Estimate", href: "contact" },
{ text: "Call Now", href: "#" }, { text: "Call Now", href: "#" },
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/man-servant-caring-garden_23-2149530840.jpg?_wi=1" imageSrc="http://img.b2bpic.net/free-photo/man-servant-caring-garden_23-2149530840.jpg?_wi=1"