import FormShell from "@/components/app/FormShell"
import PageHeader from "@/components/app/PageHeader"
import PageShell from "@/components/app/PageShell"
import { Button } from "@/components/ui/button"
import ShiftForm from "@/features/shifts/components/ShiftForm"

export default function CreateShiftPage() {
  return (
    <PageShell>
      <PageHeader
        title="Add Shift"
        actions={
          <Button asChild variant="secondary">
            <a href="/shifts">Back</a>
          </Button>
        }
      />
      <FormShell>
        <ShiftForm />
      </FormShell>
    </PageShell>
  )
}
