Files
8957b2e4-e33b-43c5-975d-255…/src/app/layout.tsx
2026-06-01 07:33:58 +00:00

71 lines
2.5 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 { Poppins } from "next/font/google";
export const metadata: Metadata = {
title: 'Southern Roofing Solutions - Quality Roofing Dapto NSW',
description: 'Professional roofing contractor in Dapto, NSW. Specializing in roof repairs, restorations, and maintenance for local homeowners. Get a free quote today!',
keywords: ["Southern Roofing Solutions, roofing contractor Dapto, roof repairs Dapto, roof restorations Dapto, roof maintenance Dapto, roofing NSW, professional roofing, Dapto roofers, local roofing company"],
openGraph: {
"title": "Southern Roofing Solutions - Quality Roofing You Can Trust",
"description": "Professional roofing contractor in Dapto, NSW. Specializing in roof repairs, restorations, and maintenance for local homeowners. Get a free quote today!",
"url": "https://www.southernroofingsolutions.com",
"siteName": "Southern Roofing Solutions",
"images": [
{
"url": "http://img.b2bpic.net/free-photo/modern-country-houses-construction_1385-17.jpg",
"alt": "Southern Roofing Solutions - Professional Roofers"
}
],
"type": "website"
},
twitter: {
"card": "summary_large_image",
"title": "Southern Roofing Solutions - Quality Roofing Dapto NSW",
"description": "Professional roofing contractor in Dapto, NSW. Specializing in roof repairs, restorations, and maintenance for local homeowners. Get a free quote today!",
"images": [
"http://img.b2bpic.net/free-photo/modern-country-houses-construction_1385-17.jpg"
]
},
robots: {
"index": true,
"follow": true
},
};
const poppins = Poppins({
variable: "--font-poppins",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${poppins.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}