-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from Lukman-01/9-PersonalPage
9-personal-page
- Loading branch information
Showing
2 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
69 changes: 69 additions & 0 deletions
69
packages/nextjs/app/builders/0x186a761645f2A264ad0A655Fb632Ca99150803A9/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.