Update src/app/layout.tsx
This commit is contained in:
@@ -1,27 +1,62 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Montserrat } 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 { Montserrat } 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 montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Grow Biz Online - Professional SEO Freelancer | Off-Page SEO & Link Building",
|
||||
description: "Expert SEO freelancer specializing in off-page optimization, backlinks, and directory submissions. Get 300+ quality backlinks monthly. Free audit available. Proven results.",
|
||||
keywords: "SEO freelancer, off-page SEO, link building, directory submission, backlinks, SEO services, ranking boost, Google rankings",
|
||||
metadataBase: new URL("https://growbizonline.com"),
|
||||
alternates: {
|
||||
canonical: "https://growbizonline.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Grow Biz Online - Boost Your Google Rankings with Expert SEO",
|
||||
description: "Professional SEO services specializing in off-page optimization and link building. See results in 30 days or less.",
|
||||
url: "https://growbizonline.com",
|
||||
siteName: "Grow Biz Online",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsaxfACLGDYTKmx06nTFLZ8kRQ/a-modern-professional-seo-dashboard-inte-1773384414010-5aacec5e.png",
|
||||
alt: "SEO Dashboard",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Grow Biz Online - Professional SEO Services",
|
||||
description: "Expert backlinks and off-page SEO strategies that deliver measurable results",
|
||||
images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsaxfACLGDYTKmx06nTFLZ8kRQ/a-modern-professional-seo-dashboard-inte-1773384414010-5aacec5e.png",
|
||||
],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -31,7 +66,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +80,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user