← back to Ken
src/app/layout.js
19 lines
import './globals.css';
export const metadata = {
title: 'Bertha - Weather Micro-Betting System',
description: 'Probabilistic weather forecasting + Polymarket execution',
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet" />
</head>
<body>{children}</body>
</html>
);
}