diff options
| author | Dhravya <[email protected]> | 2024-04-13 23:11:09 -0700 |
|---|---|---|
| committer | Dhravya <[email protected]> | 2024-04-13 23:11:09 -0700 |
| commit | d878645f370115d120d6acb2edb03b9563837ba0 (patch) | |
| tree | 4fb2057250692ad4bff72c1e64ead118cad3e870 /apps/web/src | |
| parent | changes to the quuq (diff) | |
| download | supermemory-d878645f370115d120d6acb2edb03b9563837ba0.tar.xz supermemory-d878645f370115d120d6acb2edb03b9563837ba0.zip | |
added favicon
Diffstat (limited to 'apps/web/src')
| -rw-r--r-- | apps/web/src/actions/db.ts | 2 | ||||
| -rw-r--r-- | apps/web/src/app/favicon.ico | bin | 25931 -> 0 bytes | |||
| -rw-r--r-- | apps/web/src/app/layout.tsx | 4 |
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/web/src/actions/db.ts b/apps/web/src/actions/db.ts index cd1a0f1d..2c56725d 100644 --- a/apps/web/src/actions/db.ts +++ b/apps/web/src/actions/db.ts @@ -272,7 +272,7 @@ export async function addMemory( }, body: JSON.stringify({ pageContent: content.content, - title: content.title, + title: content.title?.slice(0, 50), url: content.url, user: user.email, }), diff --git a/apps/web/src/app/favicon.ico b/apps/web/src/app/favicon.ico Binary files differdeleted file mode 100644 index 718d6fea..00000000 --- a/apps/web/src/app/favicon.ico +++ /dev/null diff --git a/apps/web/src/app/layout.tsx b/apps/web/src/app/layout.tsx index 42485461..81fe8f99 100644 --- a/apps/web/src/app/layout.tsx +++ b/apps/web/src/app/layout.tsx @@ -6,8 +6,8 @@ const roboto = Roboto({ weight: ["300", "400", "500"], subsets: ["latin"] }); const inter = Inter({ weight: ["300", "400", "500"], subsets: ["latin"] }); export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "Supermemory - Your second brain", + description: "Save your memories forever, build your own second brain.", }; export default function RootLayout({ |