diff --git a/src/components/companyPage/InvestmentPortfolio.tsx b/src/components/companyPage/InvestmentPortfolio.tsx index c2fb7d4..e7ef4cb 100644 --- a/src/components/companyPage/InvestmentPortfolio.tsx +++ b/src/components/companyPage/InvestmentPortfolio.tsx @@ -1,42 +1,4 @@ -interface Project { - title: string; - city: string; - image: string; - id: string; -} - -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", - }, -]; +import { projects } from "../../consts/projects"; const projectStyles = [ "xl:col-start-3 xl:col-end-7", @@ -48,7 +10,7 @@ const projectStyles = [ const InvestmentPortfolio = () => { return ( -
+
OUR INVESTMENT PORTFOLIO
diff --git a/src/components/companyPage/OurStory.tsx b/src/components/companyPage/OurStory.tsx index bdb88a3..6764914 100644 --- a/src/components/companyPage/OurStory.tsx +++ b/src/components/companyPage/OurStory.tsx @@ -1,82 +1,67 @@ const OurStory = () => { return ( -
-
+
+
Our story
-
-
+
+
Company -
-

- IRTH is prominently positioned among the top tier establishments - in United Arab Emirates, a family backed investment company with - core values of trust, strength and agility. +

+ IRTH is prominently positioned among the top tier establishments in + United Arab Emirates, a family backed investment company with core + values of trust, strength and agility. +

+
+

+ IRTH embodies the essence of legacy, anchoring its roots in the + heart of a vibrant Dubai. As a part of a distinguished local + family conglomerate, our privately held real estate investment + platform draws strength from a heritage spanning over a century. +

+

+ At IRTH, our foundation is built upon three CORE values: Trust, + Strength, and Agility. These principles serve as our guiding + light, propelling us forward as a prominent player in the realm of + real estate investment. We proudly stand among the elite + establishments within the UAE, a testament to our unwavering + commitment to excellence.

-
-

- IRTH embodies the essence of legacy, anchoring its roots in the - heart of a vibrant Dubai. As a part of a distinguished local - family conglomerate, our privately held real estate investment - platform draws strength from a heritage spanning over a century. -

-

- At IRTH, our foundation is built upon three CORE values: Trust, - Strength, and Agility. These principles serve as our guiding - light, propelling us forward as a prominent player in the realm - of real estate investment. We proudly stand among the elite - establishments within the UAE, a testament to our unwavering - commitment to excellence. -

-
-
-
- 2 - 2 -
-
-
-

- Our influence extends even further through strategic - partnerships with esteemed local and international hospitality - brands, elevating our stature and enriching our portfolio. With - an unwavering dedication to investment, IRTH paves the way for a - diverse range of property ventures. Our footprint is set to - expand both within the dynamic landscapes of Dubai and across - international horizons. As we forge ahead, our legacy remains - intertwined with the enduring values of trust, strength, and - agility. -

-

- The Alshamsi Family , the visionary founders behind IRTH, have - sown the seeds of a legacy that continues to flourish. Our story - is one of resilience, growth, and an unyielding pursuit of - excellence. -

-
-
- 2 -
+
+
+ 2 + 2 +
+

+ Our influence extends even further through strategic partnerships + with esteemed local and international hospitality brands, + elevating our stature and enriching our portfolio. With an + unwavering dedication to investment, IRTH paves the way for a + diverse range of property ventures. Our footprint is set to expand + both within the dynamic landscapes of Dubai and across + international horizons. As we forge ahead, our legacy remains + intertwined with the enduring values of trust, strength, and + agility. +

+

+ The Alshamsi Family , the visionary founders behind IRTH, have + sown the seeds of a legacy that continues to flourish. Our story + is one of resilience, growth, and an unyielding pursuit of + excellence. +

diff --git a/src/consts/projects.ts b/src/consts/projects.ts new file mode 100644 index 0000000..e5b2903 --- /dev/null +++ b/src/consts/projects.ts @@ -0,0 +1,36 @@ +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 }; diff --git a/src/types/project.ts b/src/types/project.ts new file mode 100644 index 0000000..49633c1 --- /dev/null +++ b/src/types/project.ts @@ -0,0 +1,8 @@ +interface Project { + title: string; + city: string; + image: string; + id: string; +} + +export type { Project };