22 lines
718 B
TypeScript
22 lines
718 B
TypeScript
import type { Metadata } from "next";
|
|
import type { ReactNode } from "react";
|
|
import { SiteFooter } from "@/components/site-footer";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "SoMC Portal — Minecraft Account Manager",
|
|
description: "Connect your Discord identity to approved Minecraft accounts.",
|
|
};
|
|
|
|
export default function RootLayout({ children }: Readonly<{ children: ReactNode }>) {
|
|
return (
|
|
<html lang="en">
|
|
<body className="flex min-h-screen flex-col">
|
|
<a className="skip-link" href="#main-content">Skip to main content</a>
|
|
<div className="flex-1" id="main-content" tabIndex={-1}>{children}</div>
|
|
<SiteFooter />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|