import Layout from "./components/Layout" import Link from 'next/link' import { faDiscord, faGit, faMastodon, faGithub } from '@fortawesome/free-brands-svg-icons' import { faBlog, faBook, faUser, faServer, faHouseUser } from '@fortawesome/free-solid-svg-icons' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import Image from 'next/image' import useTranslation from 'next-translate/useTranslation' import { useRouter } from 'next/router' import MatrixOrg from '../public/static/images/matrix-org.svg' export default function Index(props) { // Translation const router = useRouter() const { locale, locales, defaultLocale, pathname } = router const { t, lang } = useTranslation("index") const home = t('home') return (
yude's avatar

) }