local-weather/app/layout.tsx
ChrQR e6f5333851
All checks were successful
Docker Build & Publish / Build Docker (push) Successful in 1m8s
for real this time
2024-05-12 22:21:27 +02:00

27 lines
593 B
TypeScript

import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import Analytics from "@/components/Analytics";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Get the weather anywhere!",
description: "Get todays weather hour-by-hour or a 7 day forecast!",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={inter.className}>
<Analytics />
{children}
</body>
</html>
);
}