37 lines
663 B
TypeScript
37 lines
663 B
TypeScript
import { Project } from "../types/project";
|
|
|
|
const projects: Project[] = [
|
|
{
|
|
title: "Nef Kandilli",
|
|
city: "Instanbul",
|
|
image: "./images/company/4.png",
|
|
id: "1",
|
|
},
|
|
{
|
|
title: "Résidence Seniors Palazzo Chessy",
|
|
city: "Paris",
|
|
image: "./images/company/5.png",
|
|
id: "2",
|
|
},
|
|
{
|
|
title: "5 Beaujon",
|
|
city: "Paris",
|
|
image: "./images/company/6.png",
|
|
id: "3",
|
|
},
|
|
{
|
|
title: "Edenwood Resort Privé",
|
|
city: "Paris",
|
|
image: "./images/company/7.png",
|
|
id: "4",
|
|
},
|
|
{
|
|
title: "Rove Home Downtown",
|
|
city: "Dubai",
|
|
image: "./images/company/8.png",
|
|
id: "5",
|
|
},
|
|
];
|
|
|
|
export { projects };
|