Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1415,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -179,7 +179,7 @@ export default function LandingPage() {
|
||||
tagIcon={Mail}
|
||||
tagAnimation="slide-up"
|
||||
title="Get Echo in Your Life"
|
||||
description="Be among the first to experience genuine connection with Echo. Join our beta community and help shape the future of senior companionship."
|
||||
description="Be among the first to experience genuine connection with Echo. We'll send you a personal beta invitation—no commitment, no spam."
|
||||
background={{ variant: "radial-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="Enter your email to join beta"
|
||||
|
||||
Reference in New Issue
Block a user