This commit is contained in:
ik
2026-09-03 08:18:35 +07:00
parent a7bfc7ee8d
commit d407e8fcfd
103 changed files with 24544 additions and 13 deletions
+12
View File
@@ -0,0 +1,12 @@
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Ни хвоста, ни чешуи — живая карта клёва RF4",
description: "Свежие точки, рабочие приманки и понятная статистика клёва в Russian Fishing 4.",
icons: { icon: "/favicon.svg", shortcut: "/favicon.svg" },
};
export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
return <html lang="ru"><body>{children}</body></html>;
}