import type { Metadata } from "next";

import { ScheduleView } from "@/components/provider/schedule/ScheduleView";

export const metadata: Metadata = {
  title: "Schedule — Washy Portal",
  description: "Provider booking calendar — month, week and day views",
};

export default function SchedulePage() {
  return <ScheduleView />;
}
