Update src/app/layout.tsx
This commit is contained in:
@@ -1,32 +1,21 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville", subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild - Transform Your Digital Presence", description: "Create stunning web experiences with Webild. Modern design, advanced analytics, and enterprise security for businesses of all sizes.", keywords: "web design, digital transformation, analytics, automation, enterprise solutions", metadataBase: new URL("https://webild.io"),
|
||||
title: "H Town Muscle Gym - Build Strength Transform Your Body", description: "Join H Town Muscle Gym for professional fitness training. Strength equipment, cardio machines, personal training, and nutrition guidance. Local gym near you.", keywords: "gym near me, fitness gym, strength training, personal training, muscle building, cardio, weightlifting, fitness center", metadataBase: new URL("https://htownmusclegym.local"),
|
||||
alternates: {
|
||||
canonical: "https://webild.io"},
|
||||
canonical: "https://htownmusclegym.local"},
|
||||
openGraph: {
|
||||
title: "Webild - Transform Your Digital Presence", description: "Create stunning web experiences with advanced features and enterprise security", url: "https://webild.io", siteName: "Webild", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-psd/dynamic-technology-concept-landing-page_23-2150294640.jpg", alt: "Webild Landing Page"},
|
||||
],
|
||||
},
|
||||
title: "H Town Muscle Gym - Build Strength Transform Your Body", description: "Premium fitness facility with professional training and equipment", url: "https://htownmusclegym.local", siteName: "H Town Muscle Gym", type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Webild - Transform Your Digital Presence", description: "Modern web design and digital solutions for growing businesses", images: ["http://img.b2bpic.net/free-psd/dynamic-technology-concept-landing-page_23-2150294640.jpg"],
|
||||
},
|
||||
card: "summary_large_image", title: "H Town Muscle Gym - Build Strength Transform Your Body", description: "Join H Town Muscle Gym for professional fitness training"},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
@@ -41,9 +30,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<body className={`${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user