2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

40 lignes
743 B

  1. import type {LinksFunction, MetaFunction} from "@remix-run/node";
  2. import {
  3. Links,
  4. LiveReload,
  5. Meta,
  6. Outlet,
  7. Scripts,
  8. ScrollRestoration,
  9. } from "@remix-run/react";
  10. import stylesheet from '~/tailwind.css';
  11. export const links: LinksFunction = () => [
  12. { rel: "stylesheet", href: stylesheet },
  13. ];
  14. export const meta: MetaFunction = () => ({
  15. charset: "utf-8",
  16. title: "Izanagi | Animation Workbench",
  17. viewport: "width=device-width,initial-scale=1",
  18. });
  19. const App = () => {
  20. return (
  21. <html lang="en-PH">
  22. <head>
  23. <Meta />
  24. <Links />
  25. </head>
  26. <body>
  27. <Outlet />
  28. <ScrollRestoration />
  29. <Scripts />
  30. <LiveReload />
  31. </body>
  32. </html>
  33. );
  34. }
  35. export default App;