From 8453d03477840ec8571f6483264e5f499f06a235 Mon Sep 17 00:00:00 2001 From: Viet Nguyen <3805254+vnugent@users.noreply.github.com> Date: Thu, 31 Oct 2024 22:21:09 -0700 Subject: [PATCH] missing alert for climb page --- .../climb/[[...slug]]/components/PageAlert.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/app/(default)/climb/[[...slug]]/components/PageAlert.tsx 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. +
+
)