hypervisor/src/app/page.js
2026-08-10 10:06:49 -05:00

12 lines
227 B
JavaScript

import Image from "next/image";
import styles from "./page.module.css";
export default function Home() {
return (
<main className={styles.main}>
<a href="/todo">Daily Info</a>
<a href="/create">+</a>
</main>
);
}