_index.tsx 979 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. import type { MetaFunction } from "@remix-run/node";
  2. export const meta: MetaFunction = () => {
  3. return [
  4. { title: "New Remix App" },
  5. { name: "description", content: "Welcome to Remix!" },
  6. ];
  7. };
  8. export default function Index() {
  9. return (
  10. <div style={{ fontFamily: "system-ui, sans-serif", lineHeight: "1.8" }}>
  11. <h1>Welcome to Remix</h1>
  12. <ul>
  13. <li>
  14. <a
  15. target="_blank"
  16. href="https://remix.run/tutorials/blog"
  17. rel="noreferrer"
  18. >
  19. 15m Quickstart Blog Tutorial
  20. </a>
  21. </li>
  22. <li>
  23. <a
  24. target="_blank"
  25. href="https://remix.run/tutorials/jokes"
  26. rel="noreferrer"
  27. >
  28. Deep Dive Jokes App Tutorial
  29. </a>
  30. </li>
  31. <li>
  32. <a target="_blank" href="https://remix.run/docs" rel="noreferrer">
  33. Remix Docs
  34. </a>
  35. </li>
  36. </ul>
  37. </div>
  38. );
  39. }