import type { Metadata } from "next"; import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Wellsound - Emotional Well-Being Through Sound Design", description: "Interactive website combining calming soundscapes and visual feedback to enhance emotional well-being, foster empathy, and create global community connections.", keywords: "emotional well-being, sound therapy, meditation, mental health, empathy, interactive design, stress relief, wellness", robots: { index: true, follow: true, }, openGraph: { title: "Wellsound - Emotional Well-Being Through Sound Design", description: "Experience technology designed to lift you up. Interactive soundscapes and visual feedback for emotional health.", type: "website", siteName: "Wellsound", images: [ { url: "http://img.b2bpic.net/free-photo/home-still-life-with-candles-vase-living-room_169016-5976.jpg", alt: "Emotional well-being through sound design"}, ], }, twitter: { card: "summary_large_image", title: "Wellsound - Emotional Well-Being", description: "Interactive sound and visual design for emotional health and global connection", images: ["http://img.b2bpic.net/free-photo/home-still-life-with-candles-vase-living-room_169016-5976.jpg"], }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}