Skip to content

Commit

Permalink
feat(server-list): add layout for server list page
Browse files Browse the repository at this point in the history
  • Loading branch information
Callenowy committed Jan 29, 2024
1 parent b52caff commit fb686f5
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/app/server-list/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import type { Metadata } from 'next';
import { DefaultLayout } from '@/layouts/default';

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

export default function LoginPageLayout({
children,
}: {
children: React.ReactNode;
}) {
return <DefaultLayout>{children}</DefaultLayout>;
}

0 comments on commit fb686f5

Please sign in to comment.