import Link from "next/link"; import type { ReactNode } from "react"; import { Button } from "../Button"; type Props = { children: ReactNode; }; export const ComingSoon = ({ children }: Props) => (

Coming Soon

{children}

);