From 64cc90095375ebd126603fc0303069a4e7810cd2 Mon Sep 17 00:00:00 2001 From: Aidan Honor Date: Wed, 12 Mar 2025 14:48:25 -0400 Subject: [PATCH] feat: add support page --- app/account/dashboard/support/page.tsx | 61 +++++++++++++++++++ .../cards/dashboard/overview/QuickLinks.tsx | 2 +- components/pages/dashboard/SideMenu.tsx | 2 +- 3 files changed, 63 insertions(+), 2 deletions(-) create mode 100644 app/account/dashboard/support/page.tsx 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 ( +
+ +
+
+ +

Support

+
+ + + + + Email + + Create a ticket by sending an email + + + You can either send a message to the address below, or click the button. +
+ + +
+ +
+
+
+
+
+
+
+ ) +} + diff --git a/components/cards/dashboard/overview/QuickLinks.tsx b/components/cards/dashboard/overview/QuickLinks.tsx index 6e540cb..28aa2ff 100644 --- a/components/cards/dashboard/overview/QuickLinks.tsx +++ b/components/cards/dashboard/overview/QuickLinks.tsx @@ -14,7 +14,7 @@ export const QuickLinks = () => {