77 lines
1.8 KiB
TypeScript
77 lines
1.8 KiB
TypeScript
export interface Brochure {
|
|
title: string;
|
|
link: string;
|
|
}
|
|
|
|
export interface ProjectBrochures {
|
|
projectTitle: string;
|
|
brochures: Brochure[];
|
|
}
|
|
|
|
export const projectBrochures: ProjectBrochures[] = [
|
|
{
|
|
projectTitle: "Rove Home Marasi Drive",
|
|
brochures: [
|
|
{
|
|
title: "Main Brochure",
|
|
link: "/files/brochures/marasi-drive/Main Brochure.pdf",
|
|
},
|
|
{
|
|
title: "Amenities Brochure",
|
|
link: "/files/brochures/marasi-drive/Amenities Brochure.pdf",
|
|
},
|
|
{
|
|
title: "Technical Brochure",
|
|
link: "/files/brochures/marasi-drive/Technical Brochure.pdf",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
projectTitle: "Rove Home Downtown",
|
|
brochures: [
|
|
{
|
|
title: "Main Brochure",
|
|
link: "/files/brochures/downtown/Main Brochure.pdf",
|
|
},
|
|
{
|
|
title: "Amenities Brochure",
|
|
link: "/files/brochures/downtown/Amenities Brochure.pdf",
|
|
},
|
|
{
|
|
title: "Technical Brochure",
|
|
link: "/files/brochures/downtown/Technical Brochure.pdf",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
projectTitle: "Rove Home Dubai Marina",
|
|
brochures: [
|
|
{
|
|
title: "Main Brochure",
|
|
link: "/files/brochures/dubai-marina/Main Brochure.pdf",
|
|
},
|
|
{
|
|
title: "Amenities Brochure",
|
|
link: "/files/brochures/dubai-marina/Amenities Brochure.pdf",
|
|
},
|
|
{
|
|
title: "Technical Brochure",
|
|
link: "/files/brochures/dubai-marina/Technical Brochure.pdf",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
projectTitle: "Rove Home HQ",
|
|
brochures: [
|
|
{
|
|
title: "Main Brochure",
|
|
link: "/files/brochures/hq/Main Brochure.pdf",
|
|
},
|
|
{
|
|
title: "Technical Brochure",
|
|
link: "/files/brochures/hq/Technical Brochure.pdf",
|
|
},
|
|
],
|
|
},
|
|
];
|