A dead simple time tracker that keeps everything in local storage. Next.js, no accounts and no server.
handcodedlocalstoragenextjsreactself-hostedserverlesstime-trackingtimer
1import React from "react";
2
3import Page from "../components/page";
4import Timer from "../components/timer";
5
6import styles from "../styles/pages/index.module.css";
7
8const Index = () => {
9 return (
10 <Page title="Timer">
11 <div className={styles.background} />
12 <div className={styles.grid}>
13 <main className={styles.main}>
14 <Timer />
15 </main>
16 </div>
17 </Page>
18 );
19};
20
21export default Index;