11 lines
277 B
TypeScript
11 lines
277 B
TypeScript
import styles from "./page.module.css";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className={styles.page}>
|
|
<span className={styles.companyName}>Livonsaaren Osuuspuutarhan</span>
|
|
<h1 className={styles.title}>Satolaatikko kalenteri</h1>
|
|
</div>
|
|
);
|
|
}
|