diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 86b9aea..a658d23 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Roboto } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "CoasterAds | Coaster Advertising for Cafes", description: "Reach engaged customers with premium coaster advertising in cafes. Custom design, strategic placement, real-time analytics. Start your campaign today.", keywords: "coaster advertising, cafe marketing, brand placement, local advertising, coffee shop marketing", metadataBase: new URL("https://coasterads.com"), - alternates: { - canonical: "https://coasterads.com"}, - openGraph: { - title: "CoasterAds | Coaster Advertising Platform", description: "Transform your brand visibility with strategically placed coasters in premium cafes. Millions of engaged customers, one proven platform.", url: "https://coasterads.com", siteName: "CoasterAds", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-psd/japandi-template-design_23-2151892306.jpg", alt: "CoasterAds - Premium Coaster Advertising"}, - ], - }, - twitter: { - card: "summary_large_image", title: "CoasterAds | Coaster Advertising Platform", description: "Reach coffee lovers with premium coaster advertising in premium cafes. Custom design, measurable ROI.", images: ["http://img.b2bpic.net/free-psd/japandi-template-design_23-2151892306.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "CoasterAds - Premium Cafe Advertising", description: "Reach engaged customers at the perfect moment with strategic coaster advertising in premium cafes."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}