diff --git a/src/components/ProjectSelect.tsx b/src/components/ProjectSelect.tsx index b0f26b4..3d844c5 100644 --- a/src/components/ProjectSelect.tsx +++ b/src/components/ProjectSelect.tsx @@ -5,6 +5,13 @@ import { useEffect, useState } from "react"; interface Project { title: string; img: string; + types: { + name: string; + img: string; + wings: string; + floors: string; + area: string; + }[]; } function ProjectSelect({ diff --git a/src/data/projects.ts b/src/data/projects.ts index 995a505..bf0292b 100644 --- a/src/data/projects.ts +++ b/src/data/projects.ts @@ -27,6 +27,8 @@ export const projects = [ name: "Studio Flex", img: "", wings: "West Wing", + floors: "Floor 1-10", + area: "350-400 Sqft", }, ], },