diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5b9f35e..2c17401 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,29 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google"; +import { DM_Sans } 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"], }); +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], +}); + export const metadata: Metadata = { title: "RecoveryPath - Track Your Journey to Freedom", description: "Luxurious recovery companion app. Track your days clean with an infinite counter, set personalized goals, and receive motivational support when you need it most.", keywords: "recovery app, addiction support, sobriety tracker, wellness counter, recovery journey, hope, healing", robots: { index: true, follow: true, }, openGraph: { - title: "RecoveryPath - Your Recovery Companion", description: "Track your journey to freedom with our elegant recovery counter and motivational support system.", type: "website", siteName: "RecoveryPath"}, + title: "RecoveryPath - Your Recovery Companion", description: "Track your journey to freedom with our elegant recovery counter and motivational support system.", type: "website", siteName: "RecoveryPath" + }, twitter: { - card: "summary_large_image", title: "RecoveryPath - Track Your Freedom", description: "Your journey to recovery starts with a single day. RecoveryPath is here to support every step."}, + card: "summary_large_image", title: "RecoveryPath - Track Your Freedom", description: "Your journey to recovery starts with a single day. RecoveryPath is here to support every step." + }, }; export default function RootLayout({ @@ -31,9 +33,26 @@ export default function RootLayout({ }>) { return ( + +