import type { MetaFunction } from "@remix-run/cloudflare"; export const meta: MetaFunction = () => { return [ { title: "New Remix App" }, { name: "description", content: "Welcome to Remix!" }, ]; }; export default function Index() { return (

Welcome to Remix

Remix Remix
); } const resources = [ { href: "https://remix.run/start/quickstart", text: "Quick Start (5 min)", icon: ( ), }, { href: "https://remix.run/start/tutorial", text: "Tutorial (30 min)", icon: ( ), }, { href: "https://remix.run/docs", text: "Remix Docs", icon: ( ), }, { href: "https://rmx.as/discord", text: "Join Discord", icon: ( ), }, ];