Update src/app/layout.tsx

This commit is contained in:
2026-03-10 01:22:09 +00:00
parent 082eb41940
commit 5aad2bcd7d

View File

@@ -1,61 +1,24 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Poppins } 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 poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
import type { Metadata } from 'next';
import { Lenis as LenisProvider } from 'react-lenis';
import './globals.css';
export const metadata: Metadata = {
title: "Alex's Shell Sea's Pool & Spas | Luxury Pool Remodeling Orange County", description: "Transform your pool into a private resort with expert remodeling, resurfacing, and restoration services across Orange County. Licensed, insured, 5-star rated.", keywords: "pool remodeling Orange County, pool plastering OC, luxury pool renovation, pool tile replacement, pool repair services, pool resurfacing", metadataBase: new URL("https://alexshellseapools.com"),
alternates: {
canonical: "https://alexshellseapools.com"
},
openGraph: {
title: "Alex's Shell Sea's Pool & Spas | Luxury Pool Remodeling", description: "Premium pool remodeling and restoration services in Orange County. Transform your backyard into a luxury retreat.", url: "https://alexshellseapools.com", siteName: "Alex's Shell Sea's Pool & Spas", images: [
{
url: "http://img.b2bpic.net/free-photo/beautiful-landscape-sea-ocean-with-outdoor-swimming-pool-white-cloud-blue-sky-background-l_1258-108693.jpg", alt: "luxury resort infinity pool backyard design"
}
],
type: "website"
},
twitter: {
card: "summary_large_image", title: "Luxury Pool Remodeling in Orange County", description: "Expert pool transformations with 5-star craftsmanship. Licensed & insured.", images: ["http://img.b2bpic.net/free-photo/beautiful-landscape-sea-ocean-with-outdoor-swimming-pool-white-cloud-blue-sky-background-l_1258-108693.jpg"]
},
robots: {
index: true,
follow: true
}
title: 'Alex\'s Shell Sea\'s Pool & Spas | Luxury Pool Remodeling Orange County',
description: 'Professional pool remodeling, resurfacing, and repairs in Orange County. Transform your backyard into a luxury resort with expert craftsmanship.',
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
<html lang="en">
<body>
<LenisProvider root>
{children}
</LenisProvider>
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1423,7 +1386,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}