About.tsx
import { Developer, Contact } from '@/types/person';
export function About ( ) : void {
const ahmad: Developer = {
name: "Ahmad Imam",
title: "Software Engineer",
location: "Tampere, Finland",
CV: "Click to Download",
}
// About Me
const bio = " I am a full-stack software engineer with expertise in building web and mobile applications from Tampere, Finland.
I love creating user-centric solutions and working with modern technologies in collaborative teams. "
const contact: Contact = {
email: "ahmadimam71@gmail.com",
phone:"+358 414932429",
github: "github.com/ahmad-imam",
linkedin: "linkedin.com/in/ahmad-imam97",
}
}
export default About;