diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4fa0473..7cc50b3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,42 +1,20 @@ import type { Metadata } from "next"; -import { Lato } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "WebSeller - Build & Sell Websites Effortlessly", description: "Create stunning, responsive websites for your clients without coding. Scale your web design business with our all-in-one platform. Start free today.", keywords: "website builder, web design platform, sell websites, no-code builder, web hosting, drag and drop website creator", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "WebSeller - Build & Sell Websites Effortlessly", description: "Create and sell beautiful websites without coding. Start your free trial today.", siteName: "WebSeller", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/office-worker-setting-project-reminders_482257-119416.jpg", alt: "WebSeller Platform Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "WebSeller - Build & Sell Websites Effortlessly", description: "Create and sell beautiful websites without coding. Start your free trial today.", images: ["http://img.b2bpic.net/free-photo/office-worker-setting-project-reminders_482257-119416.jpg"], - }, -}; + title: "WebSeller - Build & Sell Beautiful Websites", description: "Create stunning, responsive websites for your clients without coding. Launch faster, earn more, and scale your web design business."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}