diff --git a/src/app/projects/page.tsx b/src/app/projects/page.tsx index 3ed8ca0..86d7f15 100644 --- a/src/app/projects/page.tsx +++ b/src/app/projects/page.tsx @@ -1,13 +1,49 @@ "use client"; +import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; import ProductCardOne from "@/components/sections/product/ProductCardOne"; +import ContactText from "@/components/sections/contact/ContactText"; import FooterMedia from "@/components/sections/footer/FooterMedia"; -import Link from "next/link"; export default function ProjectsPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Projects", id: "/projects" }, + { name: "About", id: "/about" }, + { name: "Portfolio", id: "portfolio" }, + ]; + + const footerColumns = [ + { + title: "Company", + items: [ + { label: "About Us", href: "/about" }, + { label: "Our Team", href: "/about" }, + { label: "Careers", href: "#" }, + ], + }, + { + title: "Properties", + items: [ + { label: "All Projects", href: "/projects" }, + { label: "Ongoing", href: "/projects" }, + { label: "Completed", href: "/projects" }, + { label: "List Property", href: "/contact" }, + ], + }, + { + title: "Support", + items: [ + { label: "Contact", href: "/contact" }, + { label: "FAQ", href: "#" }, + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + ], + }, + ]; + return ( -
- -
- -
+
+
+ +
+ +
+ +
+
); -} +} \ No newline at end of file