subman-nextjs/src/app/page.tsx

14 lines
269 B
TypeScript
Raw Normal View History

2024-06-11 08:16:34 +00:00
import Image from "next/image";
import styles from "./page.module.css";
export default function Home() {
return (
<main className={styles.main}>
2024-06-11 13:37:22 +00:00
Hello
2024-06-12 12:48:37 +00:00
<h1 className="text-3xl font-black underline">
Hello world!
</h1>
2024-06-11 08:16:34 +00:00
</main>
);
}