Submitting identifier and fetching customer data

This commit is contained in:
2025-06-16 21:28:47 +03:00
parent 069fff7294
commit 667e341445
10 changed files with 394 additions and 203 deletions

View File

@@ -1,6 +1,5 @@
'use client'
import { use } from "react";
import Calendar from "./components/Calendar";
import Landing from "./components/Landing";
import styles from "./page.module.css";
export default function Home() {
@@ -8,7 +7,7 @@ export default function Home() {
<div className={styles.page}>
<span className={styles.companyName}>Livonsaaren Osuuspuutarhan</span>
<h1 className={styles.title}>Satolaatikko kalenteri</h1>
<Calendar />
<Landing />
</div>
);
}