"use client";

import React from "react";
import MainTitle from "@/components/layout/dashboard/main-title";

type HrComingSoonPageProps = {
  title: string;
  description?: string;
};

export default function HrComingSoonPage({
  title,
  description = "This module is under development and will be available soon.",
}: HrComingSoonPageProps) {
  return (
    <div className="space-y-4">
      <MainTitle title={title} />
      <div className="rounded-md border border-dashed border-slate-300 bg-white p-8 text-center">
        <p className="text-lg font-semibold text-slate-800">Coming Soon</p>
        <p className="mt-2 text-sm text-slate-600">{description}</p>
      </div>
    </div>
  );
}
