2024-11-02 22:30:55 +00:00
|
|
|
import type { MetaFunction } from "@remix-run/cloudflare";
|
2024-11-02 22:38:33 +00:00
|
|
|
import CropSelector from "./CropSelector";
|
2024-10-30 22:11:22 +00:00
|
|
|
|
|
|
|
export const meta: MetaFunction = () => {
|
|
|
|
return [
|
2024-11-02 15:47:17 +00:00
|
|
|
{ title: "Convert images for the web!" },
|
|
|
|
{ name: "image converter", content: "Image conversion service" },
|
2024-10-30 22:11:22 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
export default function Index() {
|
|
|
|
return (
|
2024-11-02 22:38:33 +00:00
|
|
|
<CropSelector />);
|
2024-10-30 22:11:22 +00:00
|
|
|
}
|