104 lines
2.6 KiB
TypeScript
104 lines
2.6 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",
|
|
},
|
|
{
|
|
title: "Factsheet",
|
|
link: "/files/brochures/marasi-drive/Factsheet.pdf",
|
|
},
|
|
{
|
|
title: "Reasons to buy",
|
|
link: "/files/brochures/marasi-drive/Reasons to buy.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: "Unit Plans",
|
|
link: "/files/brochures/downtown/Unit Plan.pdf",
|
|
},
|
|
{
|
|
title: "Typical Floor plan 2-13",
|
|
link: "/files/brochures/downtown/Typical Floor plan 2-13.pdf",
|
|
},
|
|
{
|
|
title: "Typical Floor plan 14-19",
|
|
link: "/files/brochures/downtown/Typical Floor plan 14-19.pdf",
|
|
},
|
|
{
|
|
title: "Factsheet",
|
|
link: "/files/brochures/downtown/Factsheet.pdf",
|
|
},
|
|
{
|
|
title: "Reasons to buy",
|
|
link: "/files/brochures/downtown/Reasons to buy.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",
|
|
},
|
|
{
|
|
title: "Factsheet",
|
|
link: "/files/brochures/dubai-marina/Factsheet.pdf",
|
|
},
|
|
{
|
|
title: "RHDM Arabic",
|
|
link: "/files/brochures/dubai-marina/RHDM Arabic.pdf",
|
|
},
|
|
{
|
|
title: "RHDM Turkish",
|
|
link: "/files/brochures/dubai-marina/RHDM Turkish.pdf",
|
|
},
|
|
{
|
|
title: "RHDM Russian",
|
|
link: "/files/brochures/dubai-marina/RHDM Russian.pdf",
|
|
},
|
|
],
|
|
},
|
|
];
|