diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d1aadc..1fdb654 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,38 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "CarSwap.lk – Sell Your Vehicle Fast in Sri Lanka", description: "Sell your car, bike, or vehicle faster with CarSwap.lk. Professional advertising across TikTok, Facebook & Instagram. Affordable packages starting Rs.1,000. Get buyers in 24-48 hours.", keywords: "vehicle advertising, sell car Sri Lanka, automotive marketplace, car for sale, quick vehicle sale, social media promotion", metadataBase: new URL("https://carswap.lk"), - alternates: { - canonical: "https://carswap.lk"}, - openGraph: { - title: "CarSwap.lk – Sell Your Vehicle Fast", description: "Professional vehicle advertising platform in Sri Lanka. Reach thousands of buyers. Affordable packages. Results guaranteed.", url: "https://carswap.lk", siteName: "CarSwap.lk", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/feeling-good-girl-modern-car-salon-daytime-indoors-buying-new-vehicle_146671-16520.jpg", alt: "CarSwap.lk - Sell Your Vehicle Fast"}, - ], - }, - twitter: { - card: "summary_large_image", title: "CarSwap.lk – Sell Your Vehicle Fast", description: "Professional vehicle advertising platform in Sri Lanka. Reach thousands of buyers. Results in days, not weeks.", images: ["http://img.b2bpic.net/free-photo/feeling-good-girl-modern-car-salon-daytime-indoors-buying-new-vehicle_146671-16520.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "CarSwap.lk - Sell Your Vehicle Fast in Sri Lanka", description: "Sell your car faster with CarSwap.lk. Promote your vehicle across TikTok, Facebook, and Instagram to thousands of buyers. Affordable advertising packages starting at Rs.1,000."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children} +