diff --git a/app/account/dashboard/support/page.tsx b/app/account/dashboard/support/page.tsx new file mode 100644 index 0000000..3433449 --- /dev/null +++ b/app/account/dashboard/support/page.tsx @@ -0,0 +1,61 @@ +"use client" + +import { motion } from "framer-motion" +import { SideMenu } from "@/components/pages/dashboard/SideMenu" +import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card" +import { Input } from "@/components/ui/input" +import { Button } from "@/components/ui/button" +import { Copy, ExternalLink, Mail } from "lucide-react" + +const fadeIn = { + initial: { opacity: 0, y: 20 }, + animate: { opacity: 1, y: 0 }, + transition: { duration: 0.4 }, +} + +export default function Support() { + return ( +