aboutsummaryrefslogtreecommitdiff
path: root/apps/web-v2/src
diff options
context:
space:
mode:
authorDhravya <[email protected]>2024-05-22 17:48:38 -0500
committerDhravya <[email protected]>2024-05-22 17:48:38 -0500
commitd5218abe2527af8e472ddb818dfbcbef0c911d75 (patch)
treecf8783864736990cf1a98ba86ca84c3e841bfefd /apps/web-v2/src
parentfixed the annoying SVG errors in the terminal (diff)
downloadsupermemory-d5218abe2527af8e472ddb818dfbcbef0c911d75.tar.xz
supermemory-d5218abe2527af8e472ddb818dfbcbef0c911d75.zip
added social material
Diffstat (limited to 'apps/web-v2/src')
-rw-r--r--apps/web-v2/src/app/(landing)/page.tsx49
-rw-r--r--apps/web-v2/src/app/favicon.icobin25931 -> 0 bytes
2 files changed, 49 insertions, 0 deletions
diff --git a/apps/web-v2/src/app/(landing)/page.tsx b/apps/web-v2/src/app/(landing)/page.tsx
index 9b2e63b5..5351c51b 100644
--- a/apps/web-v2/src/app/(landing)/page.tsx
+++ b/apps/web-v2/src/app/(landing)/page.tsx
@@ -5,9 +5,58 @@ import Cta from "./Cta";
import { Toaster } from "@/components/ui/toaster";
import Features from "./Features";
import Footer from "./footer";
+import { Metadata } from "next";
export const runtime = "edge";
+export const metadata: Metadata = {
+ title: "Supermemory - Your personal second brain.",
+ description:
+ "Bring saved information from all over the internet into one place where you can connect it, and ask AI about it",
+ openGraph: {
+ images: [
+ {
+ url: "https://supermemory.ai/og-image.png",
+ width: 1200,
+ height: 627,
+ alt: "Supermemory - Your personal second brain.",
+ },
+ ],
+ },
+ metadataBase: {
+ host: "https://supermemory.ai",
+ href: "/",
+ origin: "https://supermemory.ai",
+ password: "supermemory",
+ hash: "supermemory",
+ pathname: "/",
+ search: "",
+ username: "supermemoryai",
+ hostname: "supermemory.ai",
+ port: "",
+ protocol: "https:",
+ searchParams: new URLSearchParams(""),
+ toString: () => "https://supermemory.ai/",
+ toJSON: () => "https://supermemory.ai/",
+ },
+ twitter: {
+ card: "summary_large_image",
+ site: "https://supermemory.ai",
+ creator: "https://supermemory.ai",
+ title: "Supermemory - Your personal second brain.",
+ description:
+ "Bring saved information from all over the internet into one place where you can connect it, and ask AI about it",
+ images: [
+ {
+ url: "https://supermemory.ai/og-image.png",
+ width: 1200,
+ height: 627,
+ alt: "Supermemory - Your personal second brain.",
+ },
+ ],
+ },
+};
+
export default function Home() {
return (
<main className="dark flex min-h-screen flex-col items-center overflow-x-hidden px-2 md:px-0">
diff --git a/apps/web-v2/src/app/favicon.ico b/apps/web-v2/src/app/favicon.ico
deleted file mode 100644
index 718d6fea..00000000
--- a/apps/web-v2/src/app/favicon.ico
+++ /dev/null
Binary files differ