diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7029619..f362b1e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito } from "next/font/google"; +import { Outfit } 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 nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); +const outfit = Outfit({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "SEO Hub - Create Searchable Websites Easily", description: "Build SEO-optimized websites that rank in search engines. Edit anytime with our intuitive platform. No technical skills needed.", keywords: "SEO website builder, search engine optimization, website editor, editable website, SEO tools, website platform", metadataBase: new URL("https://seohub.com"), - alternates: { - canonical: "https://seohub.com"}, - openGraph: { - title: "SEO Hub - Build Your Searchable Website", description: "Create a fully optimized website for search engines and edit anytime you want.", url: "https://seohub.com", siteName: "SEO Hub", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/luxurious-boardroom-space-within-multinational-company-used-meetings_482257-124520.jpg", alt: "website analytics dashboard screen"}, - ], - }, - twitter: { - card: "summary_large_image", title: "SEO Hub - Searchable & Editable Websites", description: "Build websites that search engines love and you can edit anytime.", images: ["http://img.b2bpic.net/free-photo/luxurious-boardroom-space-within-multinational-company-used-meetings_482257-124520.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "SEO Hub - Build Your SEO-Ready Website", description: "Create a fully searchable website that ranks in search engines. Edit your content anytime with our intuitive interface. No technical skills required."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -