import { newLine } from ".."; import { link } from "ansi-escapes"; interface ContactProps { width: number; height: number; } const Contact = ({ width, height }: ContactProps) => { return ( `${newLine}` + ` Email: ${link("contact@jokinsuares.fr", "mailto:contact@jokinsuares.fr")}${newLine}` + ` Phone: ${link("+33 6 02 26 22 00", "tel:+33602262200")}${newLine}` + ` GitHub: ${link("Feror-BotMaker", "https://github.com/Feror-BotMaker")}${newLine}` + ` Forgejo: ${link("Feror", "https://forge.feror.fr/feror")}${newLine}` + ` Discord: ${link("Feror", "https://discordapp.com/users/323206956640763916")}${newLine}` + ` LinkedIn: ${link("Jokin Suares", "https://www.linkedin.com/in/jokin-suares/")}${newLine}` + ` ssh: ${link("$ ssh contact@jokinsuares.fr", "ssh:contact@jokinsuares.fr")}${newLine}` ); }; export default Contact;