subman-nextjs/src/app/page.tsx

14 lines
269 B
TypeScript

import Image from "next/image";
import styles from "./page.module.css";
export default function Home() {
return (
<main className={styles.main}>
Hello
<h1 className="text-3xl font-black underline">
Hello world!
</h1>
</main>
);
}