From 5aad2bcd7d8a51ea8a9d8ec9c341a90a13d03062 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 01:22:09 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 62 +++++++++------------------------------------- 1 file changed, 12 insertions(+), 50 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9d55d42..e250ab9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - + + + {children} - + +