BaseTracker/frontend/app/layout.tsx
2025-10-09 09:16:31 +02:00

15 lines
369 B
TypeScript

import type { Metadata } from 'next';
import './globals.css';
export const metadata: Metadata = {
title: 'Base Noter',
description: 'Track how each Clash of Clans base defends against every army',
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}