From fb9c8b5a01d0a8fce9171d434954d1cd3a78d8d9 Mon Sep 17 00:00:00 2001 From: yashdev9274 Date: Fri, 10 May 2024 15:48:10 +0530 Subject: [PATCH] feat: create unauthorized access component --- src/components/unauthorized/index.tsx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/components/unauthorized/index.tsx diff --git a/src/components/unauthorized/index.tsx b/src/components/unauthorized/index.tsx new file mode 100644 index 0000000..7002ce7 --- /dev/null +++ b/src/components/unauthorized/index.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import Link from 'next/link' + +type Props = {} + +const Unauthorized = (props: Props) => { + return ( +
+

Unauthorized acccess!

+

Please contact support or your agency owner to get access

+ + Back to home + +
+ ) +} \ No newline at end of file