Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 67a4b39cae | |||
| adf9e6533c | |||
| e17e33491f | |||
| 5ad7418bab | |||
| ca565e0381 | |||
| 1c4918d2b3 |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user