website/pages/servers.tsx
TheClashFruit 814984ad0e
All checks were successful
Deploy Website / build (push) Successful in 1m23s
feat: add servers page
2024-04-21 19:07:06 +02:00

27 lines
635 B
TypeScript

import styles from '@/styles/Servers.module.scss';
import Navbar from '@/components/Navbar';
import Head from 'next/head';
export default function Servers() {
return (
<>
<Head>
<title>Flint &bull; Find a Server</title>
</Head>
<Navbar currentPage="servers" />
<main className={styles.container}>
<section>
<h2>Find a Server</h2>
<p>
Flint is a federated git platform, meaning that you can host your own server and connect with other servers. Below is a list of servers that you can join.
</p>
</section>
</main>
</>
);
}