import Layout from "@/components/Layout"; import { Link } from "react-router-dom"; import { ArrowLeft, Wrench } from "lucide-react"; import { Button } from "@/components/ui/button"; interface ComingSoonProps { title: string; description?: string; } const ComingSoon = ({ title, description }: ComingSoonProps) => { return (

{title}

Coming Soon

{description && (

{description}

)}
); }; export default ComingSoon;