import React from "react"; import {Card, CardContent, CardFooter, CardHeader, CardTitle} from "@/components/ui/card"; import {Button} from "@/components/ui/button"; interface HomepageWelcomeCardProps { onHidePermanently: () => void; } export function HomepageWelcomeCard({onHidePermanently}: HomepageWelcomeCardProps): React.ReactElement { return ( The Future of Termix

Please checkout the linked survey{" "} here . The purpose of this survey is to gather feedback from users on what the future UI of Termix could look like to optimize server management. Please take a minute or two to read the survey questions and answer them to the best of your ability. Thank you!

A special thanks to those in Asia who recently joined Termix through various forum posts, keep sharing it! A Chinese translation is planned for Termix, but since I don’t speak Chinese, I’ll need to hire someone to help with the translation. If you’d like to support me financially, you can do so{" "} here.

); }