20 lines
497 B
TypeScript
20 lines
497 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Transportationer — 15-Minute City Analyzer",
|
|
description:
|
|
"Analyze urban accessibility across service, transport, work, culture, and recreation categories.",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body className="bg-gray-50 text-gray-900 antialiased">{children}</body>
|
|
</html>
|
|
);
|
|
}
|