initial shame board

This commit is contained in:
dexx
2026-06-05 02:48:52 +03:00
parent c71ef3a8ef
commit 6848cb66a7
13 changed files with 1488 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Доска позора",
description: "A GitHub-powered public shame board."
};
export default function RootLayout({
children
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="ru">
<body>{children}</body>
</html>
);
}