Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 349dbaa1cc | |||
| 5ce781760c | |||
| 5aad2bcd7d | |||
| 082eb41940 |
@@ -1,61 +1,21 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from 'next';
|
||||||
import { Halant } from "next/font/google";
|
import './globals.css';
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: 'Alex\'s Shell Sea\'s Pool & Spas | Luxury Pool Remodeling Orange County',
|
||||||
alternates: {
|
description: 'Professional pool remodeling, resurfacing, and repairs in Orange County. Transform your backyard into a luxury resort with expert craftsmanship.',
|
||||||
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
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
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>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1423,7 +1383,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -189,8 +189,8 @@ export default function LandingPage() {
|
|||||||
id: "4", name: "Michael T.", imageSrc: "http://img.b2bpic.net/free-photo/casual-businessman_1098-13382.jpg", imageAlt: "Michael T."
|
id: "4", name: "Michael T.", imageSrc: "http://img.b2bpic.net/free-photo/casual-businessman_1098-13382.jpg", imageAlt: "Michael T."
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
cardTitle="Trusted by hundreds of satisfied Orange County homeowners who've transformed their backyards into private retreats."
|
cardTitle="Over 200+ Five-Star Reviews from Orange County Homeowners"
|
||||||
cardTag="Customer Love"
|
cardTag="Highly Rated & Trusted"
|
||||||
cardAnimation="slide-up"
|
cardAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user