modified: next.config.mjs modified: package-lock.json modified: package.json new file: public/manifest.json renamed: src/app/component/BusStrip.tsx -> src/app/component/Bus.tsx modified: src/app/component/Strip.tsx modified: src/app/component/StripBusOutput.tsx modified: src/app/layout.tsx modified: src/app/page.tsx
23 lines
555 B
TypeScript
23 lines
555 B
TypeScript
import "@fontsource/roboto/300.css";
|
|
import "@fontsource/roboto/400.css";
|
|
import "@fontsource/roboto/500.css";
|
|
import "@fontsource/roboto/700.css";
|
|
import { createTheme, CssBaseline, ThemeProvider } from "@mui/material";
|
|
import { Metadata, Viewport } from "next";
|
|
import Head from "next/head";
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<Head>
|
|
<link rel="manifest" href="/manifest.json" />
|
|
</Head>
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|