website/pages/index.tsx

63 lines
1.4 KiB
TypeScript
Raw Permalink Normal View History

2024-04-21 14:48:51 +00:00
import styles from '@/styles/Home.module.scss';
2024-04-21 17:07:06 +00:00
import Button from '@/components/Button';
2024-04-21 12:51:22 +00:00
import Navbar from '@/components/Navbar';
2024-04-21 14:48:51 +00:00
import ThemeChanger from '@/components/ThemeChanger';
import Head from 'next/head';
2024-04-21 12:51:22 +00:00
2024-04-20 14:56:46 +00:00
export default function Home() {
return (
<>
2024-04-21 14:48:51 +00:00
<Head>
<title>Flint &bull; Git Hosting That Just Works.</title>
<meta name="description" content="A free and open-source, self hostable federated git platform." />
</Head>
<Navbar currentPage="home" />
<header className={styles.headLine}>
<h3>Flint</h3>
<h1>
Git Hosting That Just Works.
</h1>
<p>
A free and open-source, self hostable federated git platform.
</p>
<ul>
<li>
<Button href="/servers" type={'primary'}>
Find a Server
</Button>
</li>
<li>
<Button href="/docs" type={'outlined'}>
Get Started
</Button>
</li>
</ul>
<span className={styles.gradient}></span>
</header>
<main className={styles.container}>
<section>
<h2>Features</h2>
2024-04-21 12:51:22 +00:00
2024-04-21 14:48:51 +00:00
<ul>
<li>Self-Hostable</li>
<li>Federated</li>
<li>Open-Source</li>
<li>Easy to Use</li>
</ul>
</section>
</main>
2024-04-20 14:56:46 +00:00
2024-04-21 14:48:51 +00:00
<ThemeChanger />
2024-04-20 14:56:46 +00:00
</>
);
2024-04-21 12:51:22 +00:00
}