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 */} {/*