Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions app/entities/profile/AboutMe.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,22 @@ const AboutMe = () => {
<div className="grid md:grid-cols-[1fr,2fr] gap-8 md:gap-12 items-center">
<div className="relative mx-auto md:mx-0">
<div className="absolute -inset-1 bg-gradient-to-r from-gray-300 to-gray-400 dark:from-gray-600 dark:to-gray-700 rounded-full blur opacity-20 animate-pulse"></div>
<div className="relative h-56 w-56 overflow-hidden rounded-full ring-4 ring-white dark:ring-gray-400 shadow-xl">
<div className="relative h-56 w-56 overflow-hidden rounded-full ring-4 ring-white dark:ring-gray-400 shadow-xl group">
<Image
width={500}
height={400}
priority={true}
src={'/images/profile/darkDuck.png'}
alt="Background image"
className="object-cover w-full h-full bg-gray-500"
/>
<Image
width={500}
height={400}
priority={true}
src={'/images/profile/profile.jpg'}
alt="About image"
className="hover:scale-110 transition duration-700 object-cover w-full h-full bg-gray-500"
className="absolute inset-0 object-cover w-full h-full bg-gray-500 transition-opacity duration-700 group-hover:opacity-0"
/>
</div>
</div>
Expand Down
Binary file added public/images/profile/darkDuck.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.