|
- import type {LinksFunction, MetaFunction} from "@remix-run/node";
- import {
- Links,
- LiveReload,
- Meta,
- Outlet,
- Scripts,
- ScrollRestoration,
- } from "@remix-run/react";
- import stylesheet from '~/tailwind.css';
-
- export const links: LinksFunction = () => [
- { rel: "stylesheet", href: stylesheet },
- ];
-
- export const meta: MetaFunction = () => ({
- charset: "utf-8",
- title: "Izanagi | Animation Workbench",
- viewport: "width=device-width,initial-scale=1",
- });
-
- const App = () => {
- return (
- <html lang="en-PH">
- <head>
- <Meta />
- <Links />
- </head>
- <body>
- <Outlet />
- <ScrollRestoration />
- <Scripts />
- <LiveReload />
- </body>
- </html>
- );
- }
-
- export default App;
|