Files
6b80681f-c813-4397-a5bb-3f2…/src/app/layout.tsx
2026-04-26 02:33:42 +00:00

59 lines
1.7 KiB
TypeScript

import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Libre_Baskerville } from "next/font/google";
import { Mulish } from "next/font/google";
import { Open_Sans } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Lato } from "next/font/google";
export const metadata: Metadata = {
title: 'Final Touch Bakersfield — General Contractor & Remodeler | Bakersfield, CA',
description: 'Latino-owned general contractor offering bathroom & kitchen remodels, plumbing repipes, and residential/commercial renovations in Bakersfield. Call (661) 243-8183 for a free estimate.',
openGraph: {
"title": "Final Touch Bakersfield — General Contractor & Remodeler",
"description": "Expert remodeling and contracting services in Bakersfield.",
"type": "website",
"siteName": "Final Touch Bakersfield"
},
};
const lato = Lato({
variable: "--font-lato",
subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${lato.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}