diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f7ca774..6bc04b7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1444 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Libre_Baskerville } 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 libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", - subsets: ["latin"], - weight: ["400", "700"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Agora - Tajikistan's Premier Online Marketplace", - description: "Connect with thousands of buyers and sellers on Agora. Shop securely, sell easily, and grow your business on Tajikistan's leading e-commerce platform.", - keywords: "marketplace, Tajikistan, e-commerce, online shopping, selling platform, buy sell online", - metadataBase: new URL("https://agora.tj"), - alternates: { - canonical: "https://agora.tj", - }, - openGraph: { - title: "Agora - Your Local Digital Marketplace", - description: "Discover products and reach customers on Tajikistan's unified marketplace platform.", - url: "https://agora.tj", - siteName: "Agora Marketplace", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfBvzLipXWZDam6ggyuaVWEFRP/a-modern-marketplace-dashboard-interface-1772974551757-f074afce.png", - alt: "Agora Marketplace Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Agora - Tajikistan's Marketplace", - description: "Connect, shop, and sell on Agora. Tajikistan's trusted e-commerce platform.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfBvzLipXWZDam6ggyuaVWEFRP/a-modern-marketplace-dashboard-interface-1772974551757-f074afce.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Agora - Buy & Sell Local in Tajikistan", description: "One unified platform for buying and selling locally in Tajikistan"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -