import type { MetaFunction } from "@remix-run/cloudflare"; import CropSelector from "./CropSelector"; export const meta: MetaFunction = () => { return [ { title: "Convert images for the web!" }, { name: "image converter", content: "Image conversion service" }, ]; }; export default function Index() { return ( ); }