dishplanner/frontend-old/app/routes/home.tsx

14 lines
374 B
TypeScript
Raw Permalink Normal View History

import type { Route } from "./+types/home";
2025-11-09 13:09:22 +01:00
import UpcomingDishes from "~/components/features/schedule/UpcomingDishes";
export function meta({}: Route.MetaArgs) {
return [
2025-11-09 13:09:22 +01:00
{ title: "Dish Planner - Schedule" },
{ name: "description", content: "View and manage your upcoming dish schedule" },
];
}
export default function Home() {
2025-11-09 13:09:22 +01:00
return <UpcomingDishes />;
}