import type { Metadata } from "next"; import { Manrope } from "next/font/google"; import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Post Productionss | Premium Photography & Videography in Bali", description: "Capture your precious moments with Post Productionss. Professional photography and videography services for weddings, events, and celebrations in Bali. Three years of creative excellence.", keywords: "photography bali, videography bali, wedding photography, event photography, professional photographer, bali creative services, balinese photography", openGraph: { title: "Post Productionss - Capturing Meaningful Moments", description: "Premium photography and videography services in Bali. Weddings, events, and celebrations with artistic excellence and emotional storytelling.", url: "https://postproductionss.com", siteName: "Post Productionss", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/model-photographer-getting-ready-photo-shooting_23-2148424416.jpg", alt: "Post Productionss creative showcase"}, ], }, twitter: { card: "summary_large_image", title: "Post Productionss - Premium Photography & Videography", description: "Capturing your precious moments with artistic excellence and professional precision in Bali.", images: ["http://img.b2bpic.net/free-photo/model-photographer-getting-ready-photo-shooting_23-2148424416.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}