diff --git a/components/commercial-project-card.tsx b/components/commercial-project-card.tsx index 80b4de2..7620afd 100644 --- a/components/commercial-project-card.tsx +++ b/components/commercial-project-card.tsx @@ -5,7 +5,6 @@ import { Eye } from "lucide-react"; const CommercialProjectCard = ({ project }: { project: Project }) => { return ( - // Removed h-full to allow flexbox stretch to control height
diff --git a/components/commercial-projects.tsx b/components/commercial-projects.tsx index 050d3e9..711661d 100644 --- a/components/commercial-projects.tsx +++ b/components/commercial-projects.tsx @@ -19,7 +19,7 @@ const CommercialProjects = () => {
-
+
{commercialProjects.map((project) => ( ))} diff --git a/lib/data.ts b/lib/data.ts index 70da1ad..dd3baae 100644 --- a/lib/data.ts +++ b/lib/data.ts @@ -483,5 +483,18 @@ export const projects: Project[] = [ "download_url": "https://aur.archlinux.org/packages/k-shrink", "technologies": ["Rust", "Wayland"], "thumbnails": [] + }, + { + "id": 22, + "name": "Galeria Rumia", + "short_description": "Website for shopping mall in Rumia, Poland.", + "description": "A commercial project for a shopping mall in Rumia, Poland. The website provides information about the mall, its stores, events, and promotions. It features a modern design and is built with custom handmade wordpress theme and in-house map plugin.", + "category": "Web", + "github_url": null, + "visit_url": "https://galeriarumia.com/", + "download_url": null, + "technologies": ["WordPress"], + "thumbnails": ["/images/galeria_rumia.avif", "/images/galeria_rumia2.avif"], + "commercial": true } ]; diff --git a/public/images/galeria_rumia.avif b/public/images/galeria_rumia.avif new file mode 100644 index 0000000..158dd7b Binary files /dev/null and b/public/images/galeria_rumia.avif differ diff --git a/public/images/galeria_rumia2.avif b/public/images/galeria_rumia2.avif new file mode 100644 index 0000000..5be5d9a Binary files /dev/null and b/public/images/galeria_rumia2.avif differ