diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7f05094..a346a2c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1440 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Figtree } 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 figtree = Figtree({ - variable: "--font-figtree", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "CampusHub - Student Marketplace for Buying & Selling", - description: "Buy and sell products with fellow university students. CampusHub connects your campus community with in-app messaging, verified profiles, and a dedicated marketplace platform.", - keywords: "student marketplace, campus commerce, buy sell students, university marketplace, peer-to-peer trading", - metadataBase: new URL("https://campushub.com"), - alternates: { - canonical: "https://campushub.com", - }, - openGraph: { - title: "CampusHub - Student Marketplace", - description: "The ultimate platform for university students to buy and sell products with their campus community.", - type: "website", - siteName: "CampusHub", - images: [ - { - url: "http://img.b2bpic.net/free-photo/cute-girls-doing-yoga-summer-park_1157-36560.jpg", - alt: "CampusHub Student Marketplace Platform", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "CampusHub - Buy & Sell on Campus", - description: "Join thousands of university students using CampusHub for campus commerce.", - images: ["http://img.b2bpic.net/free-photo/cute-girls-doing-yoga-summer-park_1157-36560.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "CampusHub - Student Marketplace", description: "Buy and sell with your campus community"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -