From 39ba65431d51964355d4075ad9cdbb50deeb8d5f Mon Sep 17 00:00:00 2001 From: Kartik Date: Sun, 16 Jun 2024 13:14:28 +0530 Subject: [PATCH] improve: /home page --- apps/web/app/(dash)/dynamicisland.tsx | 2 +- apps/web/app/(dash)/header.tsx | 27 +++++++++++++++++-------- apps/web/app/(dash)/home/page.tsx | 2 +- apps/web/app/(dash)/home/queryinput.tsx | 3 ++- apps/web/app/(dash)/layout.tsx | 11 +++++++--- apps/web/app/(dash)/menu.tsx | 4 ++-- apps/web/public/logo.svg | 2 +- packages/ui/icons/add.svg | 2 +- packages/ui/icons/chat.svg | 2 +- packages/ui/icons/explore.svg | 2 +- packages/ui/icons/history.svg | 2 +- packages/ui/icons/memories.svg | 2 +- 12 files changed, 39 insertions(+), 22 deletions(-) diff --git a/apps/web/app/(dash)/dynamicisland.tsx b/apps/web/app/(dash)/dynamicisland.tsx index 31f76fda..c08f883a 100644 --- a/apps/web/app/(dash)/dynamicisland.tsx +++ b/apps/web/app/(dash)/dynamicisland.tsx @@ -38,7 +38,7 @@ export function DynamicIsland() { }); return ( -
+
-
- +
+ +
+ SuperMemory logo - +
+ {/* */} + +
-
+
); } diff --git a/apps/web/app/(dash)/home/page.tsx b/apps/web/app/(dash)/home/page.tsx index b4bafb38..c539673d 100644 --- a/apps/web/app/(dash)/home/page.tsx +++ b/apps/web/app/(dash)/home/page.tsx @@ -25,7 +25,7 @@ async function Page({ {/* all content goes here */} {/*
hi {firstTime ? 'first time' : ''}
*/} -
+
diff --git a/apps/web/app/(dash)/home/queryinput.tsx b/apps/web/app/(dash)/home/queryinput.tsx index d0c27b8d..fbd537e3 100644 --- a/apps/web/app/(dash)/home/queryinput.tsx +++ b/apps/web/app/(dash)/home/queryinput.tsx @@ -63,7 +63,7 @@ function QueryInput({ name="q" cols={30} rows={4} - className="bg-transparent pt-2.5 text-base text-[#989EA4] focus:text-foreground duration-200 tracking-[3%] outline-none resize-none w-full p-4" + className="bg-transparent pt-2.5 text-base placeholder:text-[#5D6165] text-[#9DA0A4] focus:text-white duration-200 tracking-[3%] outline-none resize-none w-full p-4" placeholder="Ask your second brain..." onKeyDown={(e) => { if (e.key === "Enter") { @@ -78,6 +78,7 @@ function QueryInput({