Compare commits
2 Commits
developmen
...
a01688e155
Author | SHA1 | Date | |
---|---|---|---|
a01688e155 | |||
6759f0bd60 |
@@ -7,13 +7,14 @@ taxonomies:
|
||||
memberships: []
|
||||
categories: []
|
||||
extra:
|
||||
imgPath: malte_geierhos.png
|
||||
imgPath: malte_geierhos.jpeg
|
||||
organizations: []
|
||||
countries: []
|
||||
cities: []
|
||||
private: 0
|
||||
socialLinks: {
|
||||
LinkedIn:
|
||||
LinkedIn: #,
|
||||
websites: #,
|
||||
}
|
||||
---
|
||||
|
BIN
public/images/people/Malte_Geierhos/malte_geierhos.jpeg
Normal file
BIN
public/images/people/Malte_Geierhos/malte_geierhos.jpeg
Normal file
Binary file not shown.
After Width: | Height: | Size: 26 KiB |
@@ -3,7 +3,7 @@ title: Adnan Fateryji
|
||||
weight: 2
|
||||
description: Co-Founder, CEO of TF DMCC
|
||||
taxonomies:
|
||||
people: [adnan_fatayerji]
|
||||
people: [adnan fatayerji]
|
||||
memberships: []
|
||||
categories: []
|
||||
extra:
|
||||
|
BIN
public/images/people/amrit_gayan/amrit_gayan.jpeg
Normal file
BIN
public/images/people/amrit_gayan/amrit_gayan.jpeg
Normal file
Binary file not shown.
After Width: | Height: | Size: 69 KiB |
20
public/images/people/amrit_gayan/index.md
Normal file
20
public/images/people/amrit_gayan/index.md
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
title: Amrit Gayan
|
||||
weight: 4
|
||||
description: Advisor, Finance & Operations
|
||||
taxonomies:
|
||||
people: [amrit_gayan]
|
||||
memberships: []
|
||||
categories: []
|
||||
extra:
|
||||
imgPath: amrit_gayan.jpeg
|
||||
organizations: []
|
||||
countries: []
|
||||
cities: []
|
||||
private: 0
|
||||
socialLinks: {
|
||||
LinkedIn: https://www.linkedin.com/in/amrit-gayan-mba-38083462,
|
||||
}
|
||||
---
|
||||
|
||||
+20 years experience leading award-winning banks. AI and technology enthusiast.
|
Binary file not shown.
Before Width: | Height: | Size: 221 KiB |
Binary file not shown.
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
19
src/app/people/amrit_gayan/page.tsx
Normal file
19
src/app/people/amrit_gayan/page.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import { CallToAction } from '@/components/CallToAction'
|
||||
import { Faqs } from '@/components/Faqs'
|
||||
import { Footer } from '@/components/Footer'
|
||||
import { Header_darkbg } from '@/components/Header_darkbg'
|
||||
import { People_Amrit_Gayan } from '@/components/people/People_Amrit_Gayan'
|
||||
|
||||
export default function AmritGayanPage() {
|
||||
return (
|
||||
<>
|
||||
<Header_darkbg />
|
||||
<main>
|
||||
<People_Amrit_Gayan />
|
||||
<CallToAction />
|
||||
<Faqs />
|
||||
</main>
|
||||
<Footer />
|
||||
</>
|
||||
)
|
||||
}
|
25
src/components/people/People_Amrit_Gayan.tsx
Normal file
25
src/components/people/People_Amrit_Gayan.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
import { PersonTemplate } from '@/components/PersonTemplate'
|
||||
|
||||
export const data = [
|
||||
{
|
||||
name: 'Amrit Gayan',
|
||||
role: 'Advisor, Finance & Operations',
|
||||
imageUrl: '/images/people/amrit_gayan/amrit_gayan.jpeg',
|
||||
xUrl: '#',
|
||||
linkedinUrl: '#',
|
||||
},
|
||||
]
|
||||
|
||||
const biography = `
|
||||
<p class="text-lg/7">
|
||||
Amrit is a transformation-driven strategist and systems leader with deep experience in rethinking how finance, technology, and operations converge. With over a decade of international leadership across banking and digital ecosystems, he blends financial insight with a forward-looking approach to automation, AI, and organizational design.
|
||||
</p>
|
||||
<p class="mt-5 text-lg/7">
|
||||
At OurWorld, Amrit brings a human-first lens to complex systems; structuring future-proof operations, guiding scalable governance, and championing innovation that empowers both institutions and individuals. His work is rooted in the belief that real transformation begins with purpose, and that technology must serve meaningful, inclusive growth.
|
||||
</p>
|
||||
`
|
||||
|
||||
|
||||
export function People_Amrit_Gayan() {
|
||||
return <PersonTemplate personData={data[0]} biography={biography} />
|
||||
}
|
@@ -4,7 +4,7 @@ export const data = [
|
||||
{
|
||||
name: 'Malte Geierhos',
|
||||
role: 'Team Member',
|
||||
imageUrl: '/images/people/malte_geierhos/malte_geierhos.png',
|
||||
imageUrl: '/images/people/malte_geierhos/malte_geierhos.jpeg',
|
||||
xUrl: '#',
|
||||
linkedinUrl: 'https://www.linkedin.com/in/malte-geierhos/',
|
||||
},
|
||||
|
@@ -17,6 +17,7 @@ export async function getAllPeopleData(): Promise<PersonData[]> {
|
||||
const peopleComponents = [
|
||||
() => import('@/components/people/People_Adnan_Fateryji'),
|
||||
() => import('@/components/people/People_Alexandre_Hannelas'),
|
||||
() => import('@/components/people/People_Amrit_Gayan'),
|
||||
() => import('@/components/people/People_Chris_Camponovo'),
|
||||
() => import('@/components/people/People_Florian_Fournier'),
|
||||
() => import('@/components/people/People_Gregory_Flipo'),
|
||||
@@ -53,6 +54,7 @@ export async function getAllPeopleData(): Promise<PersonData[]> {
|
||||
// Synchronous version using static imports for immediate data access
|
||||
import { data as adnan_fateryjiData } from '@/components/people/People_Adnan_Fateryji'
|
||||
import { data as alexandre_hannelasData } from '@/components/people/People_Alexandre_Hannelas'
|
||||
import { data as amrit_gayanData } from '@/components/people/People_Amrit_Gayan'
|
||||
import { data as chris_camponovoData } from '@/components/people/People_Chris_Camponovo'
|
||||
import { data as florian_fournierData } from '@/components/people/People_Florian_Fournier'
|
||||
import { data as gregory_flipoData } from '@/components/people/People_Gregory_Flipo'
|
||||
@@ -86,6 +88,12 @@ export function getAllPeopleDataSync(): PersonData[] {
|
||||
console.error('Error loading alexandre_hannelas data:', error)
|
||||
}
|
||||
|
||||
try {
|
||||
allPeopleData.push(...amrit_gayanData)
|
||||
} catch (error) {
|
||||
console.error('Error loading amrit_gayan data:', error)
|
||||
}
|
||||
|
||||
try {
|
||||
allPeopleData.push(...chris_camponovoData)
|
||||
} catch (error) {
|
||||
|
Reference in New Issue
Block a user