"use client" import { motion } from "motion/react" 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" import { RiTelegram2Fill, RiTelegram2Line } from "react-icons/ri" 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 to copy our email to your clipboard.

Telegram Get support and updates via Telegram Channel - Get updates and news about LibreCloud.
Group - Get support and help from the community.
) }