diff --git a/src/components/PeopleHero.tsx b/src/components/PeopleHero.tsx
index 649e1e6..1e5c10e 100644
--- a/src/components/PeopleHero.tsx
+++ b/src/components/PeopleHero.tsx
@@ -35,28 +35,22 @@ export function PeopleHero() {
{person.name}
{person.role}
-
+ {person.linkedinUrl && person.linkedinUrl !== '#' && (
+
+ )}
))}
diff --git a/src/components/PersonTemplate.tsx b/src/components/PersonTemplate.tsx
index 87e959f..65af286 100644
--- a/src/components/PersonTemplate.tsx
+++ b/src/components/PersonTemplate.tsx
@@ -1,4 +1,3 @@
-import { CameraIcon } from '@heroicons/react/20/solid'
import { PersonData } from '@/lib/peopleData'
interface PersonTemplateProps {
@@ -50,10 +49,6 @@ export function PersonTemplate({ personData, biography }: PersonTemplateProps) {
height={1376}
className="aspect-12/7 w-full rounded-lg object-cover shadow-lg lg:aspect-auto"
/>
-
-
- Professional Photo
-
diff --git a/src/components/people/People_Alexandre_Hannelas.tsx b/src/components/people/People_Alexandre_Hannelas.tsx
index c42adfd..95e121d 100644
--- a/src/components/people/People_Alexandre_Hannelas.tsx
+++ b/src/components/people/People_Alexandre_Hannelas.tsx
@@ -6,7 +6,7 @@ export const data = [
role: 'Finance Manager',
imageUrl: '/images/people/alexandre_hannelas/alexandre_hannelas.jpeg',
xUrl: '#',
- linkedinUrl: '#',
+ linkedinUrl: 'https://www.linkedin.com/in/alexandre-hannelas-741681112/',
},
]