Skip to content

Commit

Permalink
feat(app-page): add server list page
Browse files Browse the repository at this point in the history
  • Loading branch information
Callenowy committed Jan 21, 2024
1 parent 97b8df1 commit 26eada4
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/app/server-list/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import type { Metadata } from 'next';
import { DefaultLayout } from '@/layouts/default';
import { Heading } from '@/components/heading';
import { Text } from '@/components/text';
import { Card } from '@/components/card';

export const metadata: Metadata = {
title: 'Server list',
description: 'The distance between you and the server',
};

export default function ServerList() {
return (
<DefaultLayout>
<div className="mx-auto w-full max-w-2xl px-6 py-[70px]">
<div className="space-y-4 pb-8 text-center md:pb-10">
<Heading
level="1"
className="text-center text-lg tracking-tight md:text-2xl md:tracking-tightest"
>
Server list
</Heading>
<Text className="text-sm md:text-base">
The distance between you and the server
</Text>
</div>

<Card>nothing here</Card>
</div>
</DefaultLayout>
);
}

0 comments on commit 26eada4

Please sign in to comment.