"use client"; import Link from "next/link"; import { getAppName } from "@tline/config"; import { useState } from "react"; import { ErrorBoundary } from "./components/ErrorBoundary"; import { MediaPanel } from "./components/MediaPanel"; import { TimelineTree } from "./components/TimelineTree"; export default function HomePage() { const [selectedDayIso, setSelectedDayIso] = useState(null); return (

{getAppName()}

); }