import type { Route } from './+types/home' import { Box, Typography, Container } from '@mui/material' export function meta(_: Route.MetaArgs) { return [ { title: "Captain's Log - Tasks" }, { name: 'description', content: 'GTD-inspired task management system' }, ] } export default function Home() { return ( Tasks Your GTD-inspired task management system. Capture everything, see only what matters. Task Management Interface Coming Soon The task list, task cards, and quick capture components will be implemented in the next phase. ) }