Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b4150d6d1d | |||
| 2959117cfb | |||
| 3bed8c80fa | |||
| 1db968e901 | |||
| 4a6219383a |
@@ -1,54 +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 { Public_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 publicSans = Public_Sans({
|
|
||||||
variable: "--font-public-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Faircloth Plumbing & Heating | Local Plumbing Service", description: "Reliable plumbing repair with fair pricing. Quick response, honest service, quality repairs. Call today for leak repair, toilet service, and general plumbing.", keywords: "plumbing service, plumber, leak repair, toilet repair, local plumbing, residential plumbing, fair pricing", robots: {
|
title: "Faircloth Plumbing & Heating", description: "Reliable local plumbing services with fair pricing and quick response times."};
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Faircloth Plumbing & Heating | Reliable Local Service", description: "Honest plumbing repairs with fair pricing. Quick response guaranteed.", type: "website", siteName: "Faircloth Plumbing & Heating", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/side-view-woman-working-as-plumber_23-2150746370.jpg", alt: "Professional plumbing service"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Faircloth Plumbing & Heating", description: "Fast, reliable, fair-priced plumbing service", images: ["http://img.b2bpic.net/free-photo/side-view-woman-working-as-plumber_23-2150746370.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.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -105,6 +105,10 @@ export default function LandingPage() {
|
|||||||
tag="Comprehensive Plumbing"
|
tag="Comprehensive Plumbing"
|
||||||
tagIcon={CheckCircle}
|
tagIcon={CheckCircle}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
|
buttons={[
|
||||||
|
{ text: "Schedule Service", href: "tel:(555)123-4567" }
|
||||||
|
]}
|
||||||
|
buttonAnimation="slide-up"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "1", title: "Leak Repair", description: "We quickly locate and repair leaks in sinks, pipes, and fixtures to prevent water damage and save you money on your water bill.", media: {
|
id: "1", title: "Leak Repair", description: "We quickly locate and repair leaks in sinks, pipes, and fixtures to prevent water damage and save you money on your water bill.", media: {
|
||||||
|
|||||||
Reference in New Issue
Block a user