import type { Metadata } from "next"; import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "BetterSelf - Stop Overthinking, Start Living | AI Social Confidence App", description: "BetterSelf is an AI-powered social confidence coaching app for iOS. Practice real conversations, get instant feedback, and transform your confidence in 14 days. Download free on App Store.", keywords: "social skills app, confidence building app, conversation practice, dating app, interview prep, networking app, public speaking app, social anxiety help, AI coaching, voice conversations", metadataBase: new URL("https://betterself.app"), alternates: { canonical: "https://betterself.app" }, openGraph: { title: "BetterSelf - Stop Overthinking, Start Living", description: "Practice real conversations with AI. Get confidence in 14 days. Download free on App Store.", url: "https://betterself.app", siteName: "BetterSelf", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AU5Wd5JjmIEwrGKfnlSinxJVrT/a-sleek-modern-3d-angled-iphone-mockup-d-1772634427336-8aff6975.png", alt: "BetterSelf App - AI Social Confidence Coaching" } ] }, twitter: { card: "summary_large_image", title: "BetterSelf - Your AI Social Confidence Coach", description: "Stop freezing in conversations. Start with 2 free sessions today.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AU5Wd5JjmIEwrGKfnlSinxJVrT/a-sleek-modern-3d-angled-iphone-mockup-d-1772634427336-8aff6975.png"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}