Update src/app/layout.tsx

This commit is contained in:
2026-03-15 21:57:29 +00:00
parent bbb5b6b005
commit a0dfdd2aba

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Raleway } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Raleway } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const raleway = Raleway({
variable: "--font-raleway",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Local Site Solutions | Professional Websites for Small Businesses",
description: "Get a professional website for your local business. Custom design, mobile-friendly, Google optimized. Simple monthly pricing starting at $75/month. No setup fees.",
keywords: "small business website, local business website, affordable website design, website builder, local SEO",
metadataBase: new URL("https://localsite.solutions"),
alternates: {
canonical: "https://localsite.solutions",
},
openGraph: {
title: "Professional Websites for Local Businesses | Local Site Solutions",
description: "Custom websites designed to bring more customers to your local business. Simple monthly pricing, no upfront costs.",
url: "https://localsite.solutions",
siteName: "Local Site Solutions",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-vector/gradient-dashboard-user-panel-template_23-2148370540.jpg",
alt: "Local Site Solutions - Professional Website Design",
},
],
},
twitter: {
card: "summary_large_image",
title: "Professional Websites for Small Businesses",
description: "Get your professional website today. Custom design, mobile-friendly, Google optimized. Monthly pricing.",
images: ["http://img.b2bpic.net/free-vector/gradient-dashboard-user-panel-template_23-2148370540.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${raleway.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}