added social material

This commit is contained in:
Dhravya 2024-05-22 17:48:38 -05:00
parent e373418950
commit d5218abe25
10 changed files with 68 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 455 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 987 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

View file

@ -0,0 +1,19 @@
{
"name": "Supermemory - your second brain.",
"short_name": "Supermemory",
"icons": [
{
"src": "/icons/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/icons/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}

View file

@ -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">

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB