diff --git a/app/portfolio/page.tsx b/app/portfolio/page.tsx index 29148a7..2481d4c 100644 --- a/app/portfolio/page.tsx +++ b/app/portfolio/page.tsx @@ -1,19 +1,84 @@ -import NextBreadcrumb from "../components/NextBreadcrumb" +import NextBreadcrumb from "../components/NextBreadcrumb"; -export default function Portfolio(){ - return( -
- > } - activeClasses='text-amber-500' - containerClasses='flex py-5' - listClasses='hover:underline mx-2 font-bold' - capitalizeLinks - /> -
-

Portfolio

-
-
- ) -} \ No newline at end of file +export default function Portfolio() { + type Project = { + title: string; + img: string; + desc: string; + }; + + const projects: Project[] = [ + { + title: "Villa Nova", + img: "img/latest/mozaic-tiling.jpg", + desc: "Vacation rental pool maintenance", + }, + { + title: "DAMAC MAISON", + img: "img/portfolio/damac-maison.jpg", + desc: "Maintenenace Water Quality", + }, + { + title: "Atana Hotel", + img: "img/portfolio/atana-hotel.jpg", + desc: "Maintenance", + }, + { + title: "Hotel Avalon", + img: "img/portfolio/avalon.jpg", + desc: "Rennovation", + }, + { + title: "Al Barari", + img: "img/portfolio/al-barari.jpg", + desc: "Design and Construction", + }, + { + title: "Golden Sands", + img: "img/portfolio/golden-sands.jpg", + desc: "Maintenance", + }, + ]; + + return ( +
+ > } + activeClasses='text-amber-500' + containerClasses='flex py-5' + listClasses='hover:underline mx-2 font-bold' + capitalizeLinks + /> +
+
+
+

+ Our Portfolio +

+
+ {/* Replace these blocks with your content */} + {projects.map((item, index) => ( +
+ {item.title} +
+

+ {item.title} +

+

{item.desc}

+
+
+ ))} +
+
+
+
+
+ ); +} diff --git a/public/img/portfolio/al-barari.jpg b/public/img/portfolio/al-barari.jpg new file mode 100644 index 0000000..814682d Binary files /dev/null and b/public/img/portfolio/al-barari.jpg differ diff --git a/public/img/portfolio/atana-hotel.jpg b/public/img/portfolio/atana-hotel.jpg new file mode 100644 index 0000000..73d4e99 Binary files /dev/null and b/public/img/portfolio/atana-hotel.jpg differ diff --git a/public/img/portfolio/avalon.jpg b/public/img/portfolio/avalon.jpg new file mode 100644 index 0000000..a9ae15e Binary files /dev/null and b/public/img/portfolio/avalon.jpg differ diff --git a/public/img/portfolio/damac-maison.jpg b/public/img/portfolio/damac-maison.jpg new file mode 100644 index 0000000..11b87a7 Binary files /dev/null and b/public/img/portfolio/damac-maison.jpg differ diff --git a/public/img/portfolio/golden-sands.jpg b/public/img/portfolio/golden-sands.jpg new file mode 100644 index 0000000..40f0a03 Binary files /dev/null and b/public/img/portfolio/golden-sands.jpg differ