15 lines
384 B
TypeScript
15 lines
384 B
TypeScript
'use client'
|
|
import { use } from "react";
|
|
import Calendar from "./components/Calendar";
|
|
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>
|
|
<Calendar />
|
|
</div>
|
|
);
|
|
}
|