diff --git a/src/app/tenders-procurement/page.tsx b/src/app/tenders-procurement/page.tsx new file mode 100644 index 0000000..e8919ee --- /dev/null +++ b/src/app/tenders-procurement/page.tsx @@ -0,0 +1,138 @@ +"use client"; +import { ThemeProvider } from "next-themes"; +import { NavbarLayoutFloatingInline } from '@/components/navbar/NavbarLayoutFloatingInline'; +import { HeroBillboardDashboard } from '@/components/sections/hero/HeroBillboardDashboard'; +import { FeatureCardEight } from '@/components/sections/feature/FeatureCardEight'; +import { FaqSplitMedia } from '@/components/sections/faq/FaqSplitMedia'; +import { FooterBase } from '@/components/sections/footer/FooterBase'; +import { Briefcase, ListTodo, FileText, HelpCircle } from 'lucide-react'; + +export default function TendersProcurementPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Tenders & Procurement", id: "/tenders-procurement" } + ]; + + return ( + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}