'use client'; import React from 'react'; export default function Home() { const commands = [ 'expense add -desc "Coffee" -cost 3.50 -cat "Food"', 'expense report -from "2024-01-01" -to "2024-01-31"', 'expense daylog -stars 3 -text "Added team lunch" -date "2024-01-18"' ]; return ( <>

DiaryWhisper v1.0.0

Your expenses and day logs tracked via Siri Shortcuts

Loading system components...
Initializing expense database... OK
Starting expense tracking daemon... OK
System ready_

Available Commands:

{commands.map((cmd, i) => (
$ {cmd}
))}
Status: OPERATIONAL Database: CONNECTED Last Backup: 2024-01-18 14:30 UTC
); }