rm
This commit is contained in:
Binary file not shown.
Before Width: | Height: | Size: 69 KiB |
@@ -1,20 +0,0 @@
|
|||||||
---
|
|
||||||
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.
|
|
@@ -1,19 +0,0 @@
|
|||||||
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 />
|
|
||||||
</>
|
|
||||||
)
|
|
||||||
}
|
|
@@ -1,25 +0,0 @@
|
|||||||
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} />
|
|
||||||
}
|
|
@@ -17,7 +17,6 @@ export async function getAllPeopleData(): Promise<PersonData[]> {
|
|||||||
const peopleComponents = [
|
const peopleComponents = [
|
||||||
() => import('@/components/people/People_Adnan_Fateryji'),
|
() => import('@/components/people/People_Adnan_Fateryji'),
|
||||||
() => import('@/components/people/People_Alexandre_Hannelas'),
|
() => import('@/components/people/People_Alexandre_Hannelas'),
|
||||||
() => import('@/components/people/People_Amrit_Gayan'),
|
|
||||||
() => import('@/components/people/People_Chris_Camponovo'),
|
() => import('@/components/people/People_Chris_Camponovo'),
|
||||||
() => import('@/components/people/People_Florian_Fournier'),
|
() => import('@/components/people/People_Florian_Fournier'),
|
||||||
() => import('@/components/people/People_Gregory_Flipo'),
|
() => import('@/components/people/People_Gregory_Flipo'),
|
||||||
@@ -54,7 +53,6 @@ export async function getAllPeopleData(): Promise<PersonData[]> {
|
|||||||
// Synchronous version using static imports for immediate data access
|
// Synchronous version using static imports for immediate data access
|
||||||
import { data as adnan_fateryjiData } from '@/components/people/People_Adnan_Fateryji'
|
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 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 chris_camponovoData } from '@/components/people/People_Chris_Camponovo'
|
||||||
import { data as florian_fournierData } from '@/components/people/People_Florian_Fournier'
|
import { data as florian_fournierData } from '@/components/people/People_Florian_Fournier'
|
||||||
import { data as gregory_flipoData } from '@/components/people/People_Gregory_Flipo'
|
import { data as gregory_flipoData } from '@/components/people/People_Gregory_Flipo'
|
||||||
@@ -88,12 +86,6 @@ export function getAllPeopleDataSync(): PersonData[] {
|
|||||||
console.error('Error loading alexandre_hannelas data:', error)
|
console.error('Error loading alexandre_hannelas data:', error)
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
|
||||||
allPeopleData.push(...amrit_gayanData)
|
|
||||||
} catch (error) {
|
|
||||||
console.error('Error loading amrit_gayan data:', error)
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
allPeopleData.push(...chris_camponovoData)
|
allPeopleData.push(...chris_camponovoData)
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
Reference in New Issue
Block a user