14 lines
268 B
TypeScript
14 lines
268 B
TypeScript
import Image from "next/image";
|
|
import styles from "./page.module.css";
|
|
import Link from "next/link";
|
|
|
|
export default function Home() {
|
|
return <main>
|
|
<h1>Schedule demo</h1>
|
|
<ul>
|
|
<li>
|
|
<Link href="/schedule">Schedule demo</Link>
|
|
</li>
|
|
</ul>
|
|
</main>;
|
|
}
|