diff options
| author | Dhravya <[email protected]> | 2024-06-13 18:49:43 -0500 |
|---|---|---|
| committer | Dhravya <[email protected]> | 2024-06-13 18:49:43 -0500 |
| commit | 0fb924d9b016ae7ebab4a64d7f71cf3418a0d80d (patch) | |
| tree | 2922a564091b78f19d3a0208d270a74a128a519f /apps/web/app | |
| parent | make header and menu fixed instead of absolute to prevent movement on scroll (diff) | |
| download | supermemory-0fb924d9b016ae7ebab4a64d7f71cf3418a0d80d.tar.xz supermemory-0fb924d9b016ae7ebab4a64d7f71cf3418a0d80d.zip | |
small stuff
Diffstat (limited to 'apps/web/app')
| -rw-r--r-- | apps/web/app/(dash)/chat/CodeBlock.tsx | 2 | ||||
| -rw-r--r-- | apps/web/app/(landing)/package.json | 5 | ||||
| -rw-r--r-- | apps/web/app/(landing)/page.tsx | 2 |
3 files changed, 2 insertions, 7 deletions
diff --git a/apps/web/app/(dash)/chat/CodeBlock.tsx b/apps/web/app/(dash)/chat/CodeBlock.tsx index f9929f70..0bb6a19d 100644 --- a/apps/web/app/(dash)/chat/CodeBlock.tsx +++ b/apps/web/app/(dash)/chat/CodeBlock.tsx @@ -53,7 +53,7 @@ const CodeBar = React.memo( viewBox="0 0 24 24" strokeWidth={1.5} stroke="currentColor" - className="size-6" + className="size-4" > <path strokeLinecap="round" diff --git a/apps/web/app/(landing)/package.json b/apps/web/app/(landing)/package.json deleted file mode 100644 index a7fabf2f..00000000 --- a/apps/web/app/(landing)/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "scripts": { - "vercel-build": "next build" - } -} diff --git a/apps/web/app/(landing)/page.tsx b/apps/web/app/(landing)/page.tsx index 562e9af9..09f94d92 100644 --- a/apps/web/app/(landing)/page.tsx +++ b/apps/web/app/(landing)/page.tsx @@ -16,7 +16,7 @@ export default async function Home() { console.log(user); if (user) { - // await redirect("/home") + await redirect("/home"); } return ( |