main.tsx
about.ts
experience.ts
contact.ts
terminal

Fadhel Alqaidoom

Software Engineer
// main.tsx - Fadhel Alqaidoom's Portfolio
// Last updated: May 20, 2025
import React from "react";
interface Developer {
name: string;
title: string;
location: string;
email: string;
skills: string[];
}
const FadhelAlqaidoom: Developer = {
name: "Fadhel Alqaidoom",
title: "Software Engineer",
location: "Bahrain",
email: "falqaidoom@icloud.com",
skills: [
"JavaScript",
"TypeScript",
"React",
"Next.js",
"Node.js",
],
};
function Profile() {
return (
<div className="w-full h-full flex items-center justify-center">
<div className="flex flex-col items-center max-w-md text-center py-12">
<h1 className="text-3xl md:text-4xl font-bold text-primary mb-2">
{FadhelAlqaidoom.name}
</h1>
<div className="text-lg md:text-xl text-accent mb-4">
{FadhelAlqaidoom.title}
</div>
<div className="flex gap-4 my-3">
</div>
<div className="mb-6 text-center text-muted-foreground">
{FadhelAlqaidoom.location} | {FadhelAlqaidoom.email}
</div>
<Button className="px-6 py-2 text-base hover:scale-105">
Contact Me!
</Button>
</div>
</div>
);
}
export default Profile;
Terminal
cd portfolio
npm run build
Build completed successfully!
Ready to deploy at https://fadhelalqaidoom.xyz