app/page.tsx (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
import Link from "next/link"; import Head from "next/head"; export default function Home() { return ( <main> <title>Image Utilities</title> <h1 className="text-xl font-medium text-gray-900 mb-4"> About This Site </h1> <p className="text-sm text-gray-700 max-w-2xl mb-1"> Most image utilities sites use ads to cover their server costs.{" "} </p> <p className="text-sm text-gray-700 max-w-xl mb-1"> This site runs entirely on your device. This way you can use it without any ads and your images never leave your device. </p> <p className="text-sm text-gray-700 max-w-xl mb-1"> Built using <Link href="https://webassembly.org/" className="text-blue-500"> {" "} WebAssembly{" "} </Link> and <Link href="https://ffmpeg.org/" className="text-blue-500"> {" "} FFmpeg{" "} </Link> </p> </main> ); } |