import type { Metadata } from "next"; 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"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Mulish } from "next/font/google"; export const metadata: Metadata = { title: 'Universe Connection - Authentic Crystal Healing & Spiritual Guidance', description: 'Transform your life with energized healing crystals and personalized spiritual guidance by Suman Sharma. Explore our collection of chakra, prosperity, and protection bracelets.', }; const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}