Skip to content

Commit

Permalink
Merge pull request #14 from Lukman-01/9-PersonalPage
Browse files Browse the repository at this point in the history
9-personal-page
  • Loading branch information
phipsae authored Oct 22, 2024
2 parents 0f74d5e + 458dbe7 commit 89c9c64
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
import Image from "next/image";
import Link from "next/link";
import type { NextPage } from "next";

const socialLinks = [
{ name: "GitHub", url: "https://github.com/Lukman-01" },
{ name: "LinkedIn", url: "https://www.linkedin.com/in/lukman-abdulyekeen-75746323a/" },
{ name: "Twitter", url: "https://x.com/Icon_70" },
];

const lukmansPage: NextPage = () => {
return (
<div className="min-h-screen bg-base-200 py-12 px-4 sm:px-6 lg:px-8">
<main className="max-w-2xl mx-auto">
<div className="card bg-base-100 shadow-lg">
<header className="flex flex-col sm:flex-row items-center mb-8 p-6">
<div className="w-32 h-32 rounded-full overflow-hidden shadow-lg mb-4 sm:mb-0 sm:mr-8">
<Image
src="/lukmansImages/lukmansAvater.jpeg"
alt="Lukman"
width={100}
height={100}
className="w-full h-full object-cover"
/>
</div>
<div className="text-center sm:text-left">
<h1 className="text-2xl font-semibold text-primary-content border-primary pb-2 mb-1">
Abdulyekeen Lukman
</h1>
<p className="text-xl text-secondary-content mt-2">Smart Contract Developer</p>
</div>
</header>

<section className="p-6">
<h2 className="text-2xl font-semibold text-primary-content border-b-2 border-primary pb-2 mb-4">
About Me
</h2>
<p className="text-base-content leading-relaxed">
Hello! My name is Abdulyekeen Lukman, a passionate Smart Contract Developer with 2 years of experience
writing smart contracts. I have a background in Electrical and Electronics Engineering, and my hands-on
experience spans various blockchain platforms, including Ethereum and Starknet. I also have background in
Cloud, AI and Bigdata. I am dedicated to writing clean, efficient code and constantly exploring new
technologies to stay at the forefront of world of technologies.
</p>
</section>

<section className="p-6">
<h2 className="text-2xl font-semibold text-primary-content border-b-2 border-primary pb-2 mb-4">Connect</h2>
<div className="flex flex-wrap gap-4">
{socialLinks.map(platform => (
<Link
key={platform.name}
href={platform.url}
target="_blank"
rel="noopener noreferrer"
className="inline-block px-4 py-2 bg-primary text-primary-content rounded hover:opacity-80 transition duration-300 ease-in-out transform hover:-translate-y-1"
>
{platform.name}
</Link>
))}
</div>
</section>
</div>
</main>
</div>
);
};

export default lukmansPage;
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 89c9c64

Please sign in to comment.