From 5d9d830cb1548f6637c0de99352e6b231c36f0e5 Mon Sep 17 00:00:00 2001 From: libertyoms Date: Thu, 1 May 2025 11:53:05 +0200 Subject: [PATCH] recruitment portal coming soon --- app/(website)/portal/page.tsx | 36 +++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 app/(website)/portal/page.tsx diff --git a/app/(website)/portal/page.tsx b/app/(website)/portal/page.tsx new file mode 100644 index 0000000..7b58d37 --- /dev/null +++ b/app/(website)/portal/page.tsx @@ -0,0 +1,36 @@ +import { Metadata } from "next"; +import { FaTools } from "react-icons/fa"; // Using a construction/tools icon +import { COLORS } from "@/constants"; + +// SEO Metadata +export const metadata: Metadata = { + title: "Recruitment Portal | OMS South Africa", + description: + "Our recruitment portal is currently under development. Stay tuned for updates on career opportunities at Owethu Managed Services.", + robots: "noindex, nofollow", // Prevent indexing of the coming soon page +}; + +export default function RecruitmentPortalPage() { + return ( +
+ +

+ Recruitment Portal Coming Soon! +

+

+ We are currently building our dedicated recruitment portal to connect + talented individuals with exciting career opportunities at OMS. +

+

+ Please check back later for updates. +

+ {/* Optional: Link back to home or contact */} + {/* + Go to Homepage + */} +
+ ); +}