Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c701309e85 | |||
| 30d36ce595 | |||
| ad0d8b36f6 | |||
| a501a0bf78 | |||
| 634ce3786c | |||
| e812133a0d | |||
| 9003d4dc92 | |||
| 0bc0ebc5ed | |||
| 452bba664e |
@@ -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 { Montserrat } from "next/font/google";
|
import "@/styles/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 montserrat = Montserrat({
|
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Plumbing & Heating Doctor | 24/7 Emergency Plumber in Palmer, AK", description: "Palmer's trusted plumber & heating expert. 4.9★ rated, 16+ years experience, licensed & background checked. Same-day emergency service available 24/7. Free estimates.", keywords: "plumber Palmer AK, emergency plumber Palmer, water heater repair Palmer, drain cleaning Palmer, leak repair Palmer, 24/7 plumbing service", openGraph: {
|
title: "Plumbing & Heating Doctor | 24/7 Emergency Plumbing Palmer, Alaska", description: "Palmer's trusted 24/7 plumbing and heating experts. Licensed, reliable service with 4.9★ rating and 338+ reviews. Same-day service available."};
|
||||||
title: "Plumbing & Heating Doctor | Palmer, Alaska", description: "Fast, licensed, and trusted plumbing services in Palmer, Alaska. 4.9★ rating from 338+ customers. 24/7 emergency response.", siteName: "Plumbing and Heating Doctor", type: "website"},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Palmer's 24/7 Plumbing Expert", description: "Emergency plumbing services in Palmer, Alaska. Licensed professionals, free estimates, same-day service."},
|
|
||||||
};
|
|
||||||
|
|
||||||
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} ${montserrat.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1407,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -65,6 +65,9 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
|
{
|
||||||
|
title: "Open 24/7", description: "Emergency plumbing repairs available anytime you need us", icon: Clock
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "4.9 ★ Google Rating", description: "338+ verified customer reviews proving our commitment to excellence", icon: Star
|
title: "4.9 ★ Google Rating", description: "338+ verified customer reviews proving our commitment to excellence", icon: Star
|
||||||
},
|
},
|
||||||
@@ -79,9 +82,6 @@ export default function LandingPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Free Estimates", description: "No obligation quotes so you know costs upfront", icon: DollarSign
|
title: "Free Estimates", description: "No obligation quotes so you know costs upfront", icon: DollarSign
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Open 24/7", description: "Emergency plumbing repairs available anytime you need us", icon: Clock
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-happy-auto-repairman-looking-camera-while-his-customers-are-standing-background_637285-7790.jpg?_wi=1"
|
imageSrc="http://img.b2bpic.net/free-photo/portrait-happy-auto-repairman-looking-camera-while-his-customers-are-standing-background_637285-7790.jpg?_wi=1"
|
||||||
|
|||||||
Reference in New Issue
Block a user