Merge version_2 into main #4
@@ -1,48 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import "./globals.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({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Professional Painting Services in Kemptville | W Painting & Sons", description: "Expert interior and exterior painting for homes and businesses in Kemptville, Ontario. Free estimates, professional results. Call (819) 775-7695 today.", keywords: "painting contractor Kemptville, interior painting, exterior painting, residential painting, commercial painting, North Grenville, Ottawa South", metadataBase: new URL("https://wpaintingandsons.com"),
|
||||
alternates: {
|
||||
canonical: "https://wpaintingandsons.com"},
|
||||
openGraph: {
|
||||
title: "Professional Painting Services in Kemptville | W Painting & Sons", description: "Quality interior and exterior painting services for homes and businesses. Free estimates available.", url: "https://wpaintingandsons.com", siteName: "W Painting & Sons Inc", type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Professional Painting Services in Kemptville | W Painting & Sons", description: "Expert painting contractor serving Kemptville and surrounding areas. Free estimates, professional results."},
|
||||
};
|
||||
title: "W Painting & Sons | Professional Painting Services in Kemptville", description: "Professional painting services for homes and businesses in Kemptville and surrounding areas. Quality interior and exterior painting with reliable, efficient service."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1410,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -47,8 +47,6 @@ export default function LandingPage() {
|
||||
{ text: "Request Free Quote", href: "#contact" }
|
||||
]}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/repairman-home-construction-using-roller-brush-as-guitar-guy-singing-while-renovating-house-apartment-redecoration-home-construction-while-renovating-improving-repair-decorating_482257-14172.jpg"
|
||||
imageAlt="Professional painting service in progress"
|
||||
mediaAnimation="slide-up"
|
||||
frameStyle="card"
|
||||
/>
|
||||
@@ -101,8 +99,6 @@ export default function LandingPage() {
|
||||
buttons={[
|
||||
{ text: "Get Your Free Estimate", href: "tel:(819)775-7695" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-family-painting-apartment-wall-while-redecorating-with-roller-brush-apartment-redecoration-home-construction-while-renovating-improving-repair-decorating_482257-14144.jpg"
|
||||
imageAlt="Professional interior painting work"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
@@ -141,8 +137,6 @@ export default function LandingPage() {
|
||||
buttons={[
|
||||
{ text: "Call (819) 775-7695", href: "tel:(819)775-7695" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/painting-red_1385-599.jpg"
|
||||
imageAlt="Exterior painting work in the Kemptville region"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user