diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0999077..c35c828 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,76 +1,22 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } 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 openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "WinSite - Buy & Sell Ready-to-Launch Digital Products", - description: "Launch your next digital project in minutes. Browse thousands of ready-made websites, SaaS tools, templates, and AI-generated assets. Skip building. Start winning.", - keywords: "digital marketplace, ready-made websites, SaaS templates, AI tools, digital products, online business", - metadataBase: new URL("https://winsite.com"), - alternates: { - canonical: "https://winsite.com", - }, - openGraph: { - title: "WinSite - Digital Products Marketplace", - description: "The easiest place to buy and sell ready-to-launch digital products and AI-generated online businesses.", - url: "https://winsite.com", - siteName: "WinSite", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AayI52Vzbi70YDU2rW87pd8RUc/a-modern-saas-landing-page-template-with-1772845779916-57149c31.png", - alt: "WinSite Digital Marketplace Platform", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "WinSite - Launch Digital Projects in Minutes", - description: "Buy ready-to-launch websites, tools, templates, and AI assets. Sell your digital products to thousands of entrepreneurs.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AayI52Vzbi70YDU2rW87pd8RUc/a-modern-saas-landing-page-template-with-1772845779916-57149c31.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "WinSite - Digital Marketplace", description: "A marketplace for ready-made websites, tools, templates, and digital businesses."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +