diff --git a/src/app/(default)/climb/[[...slug]]/components/PageAlert.tsx b/src/app/(default)/climb/[[...slug]]/components/PageAlert.tsx new file mode 100644 index 000000000..31b0e7854 --- /dev/null +++ b/src/app/(default)/climb/[[...slug]]/components/PageAlert.tsx @@ -0,0 +1,12 @@ +import Link from 'next/link' +import { Bulldozer } from '@phosphor-icons/react/dist/ssr' + +export const PageAlert: React.FC<{ id: string }> = ({ id }) => ( +
+
+ + We're giving this page a facelift. + Visit the previous version + to make edits. +
+
)