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