"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 (

Support

Email Create a ticket by sending an email You can either send a message to the address below, or click the button.
) }