added social material
BIN
apps/web-v2/public/favicon.ico
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
apps/web-v2/public/icons/android-chrome-192x192.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
apps/web-v2/public/icons/android-chrome-512x512.png
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
apps/web-v2/public/icons/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
BIN
apps/web-v2/public/icons/favicon-16x16.png
Normal file
|
After Width: | Height: | Size: 455 B |
BIN
apps/web-v2/public/icons/favicon-32x32.png
Normal file
|
After Width: | Height: | Size: 987 B |
BIN
apps/web-v2/public/og-image.png
Normal file
|
After Width: | Height: | Size: 1.8 MiB |
19
apps/web-v2/public/site.webmanifest
Normal 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"
|
||||
}
|
||||
|
|
@ -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">
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 25 KiB |