From b199c62ec5614fe334da839b576a5c68e0299dc0 Mon Sep 17 00:00:00 2001 From: Dhravya Date: Sat, 29 Jun 2024 02:22:20 -0500 Subject: [PATCH] design improvement --- apps/web/app/(dash)/home/page.tsx | 39 ++++++++++++++++++++++++- apps/web/app/(dash)/home/queryinput.tsx | 1 + 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/apps/web/app/(dash)/home/page.tsx b/apps/web/app/(dash)/home/page.tsx index aabb4d80..12e3bad8 100644 --- a/apps/web/app/(dash)/home/page.tsx +++ b/apps/web/app/(dash)/home/page.tsx @@ -8,6 +8,21 @@ import { useRouter } from "next/navigation"; import { createChatThread, linkTelegramToUser } from "@/app/actions/doers"; import { toast } from "sonner"; import { useSession } from "next-auth/react"; +import { motion } from "framer-motion"; +import BackgroundPlus from "@/app/(landing)/GridPatterns/PlusGrid"; + +const slap = { + initial: { + opacity: 0, + scale: 1.1, + }, + whileInView: { opacity: 1, scale: 1 }, + transition: { + duration: 0.5, + ease: "easeInOut", + }, + viewport: { once: true }, +}; function Page({ searchParams, @@ -54,7 +69,29 @@ function Page({ {/* all content goes here */} {/*
hi {firstTime ? 'first time' : ''}
*/} -
+
+
+
+ + + + + Unlock your{" "} + + digital brain + + + +
{ if (q.length === 0) { diff --git a/apps/web/app/(dash)/home/queryinput.tsx b/apps/web/app/(dash)/home/queryinput.tsx index 3c944c05..697dc7f9 100644 --- a/apps/web/app/(dash)/home/queryinput.tsx +++ b/apps/web/app/(dash)/home/queryinput.tsx @@ -73,6 +73,7 @@ function QueryInput({ className="flex gap-4 p-3" >