diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c5660a9..451cafe 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,20 @@ 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"; +import "@/styles/globals.css"; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Echo - AI Companion for Seniors Fighting Isolation", description: "Echo is an AI companion app designed to reduce senior isolation through daily conversation, routine support, and activity suggestions. Free during beta. Built for genuine connection.", keywords: "AI companion, senior care, loneliness, conversation, tech for seniors, aging parents, family caregiving", metadataBase: new URL("https://echo-ai-companion.com"), - alternates: { - canonical: "https://echo-ai-companion.com" - }, - openGraph: { - title: "Echo - Your AI Companion for Meaningful Daily Connection", description: "A companion who's always there to listen. Echo talks with you daily, remembers what matters, and gently suggests things to do.", url: "https://echo-ai-companion.com", siteName: "Echo", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/senior-woman-using-mobile-phone-showing-text-message-her-husband-who-is-using-digital-tablet-home_637285-3216.jpg", alt: "Echo AI Companion for Seniors" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Echo - AI Companion for Seniors", description: "Never feel alone. Echo is your daily companion, built by a teenager who cares.", images: ["http://img.b2bpic.net/free-photo/senior-woman-using-mobile-phone-showing-text-message-her-husband-who-is-using-digital-tablet-home_637285-3216.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Echo - AI Companion for Seniors", description: "Echo is a genuine AI companion designed to reduce senior isolation through daily conversations, smart reminders, and meaningful engagement."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}