import { Metadata } from 'next';
import AppointmentPage from './_components/AppointmentPage';

export const metadata: Metadata = {
  title: "Colors",
};

export default function ColorsPage() {
  return (
    <>
      <div className="flex flex-col gap-10">
        <AppointmentPage />
      </div>
    </>
  );
}