Skip to content
Open
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
7 changes: 5 additions & 2 deletions src/components/About.astro
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,16 @@ import { siteConfig } from "../config";

<div class="lg:col-span-8 space-y-8">
<p class="text-lg sm:text-xl md:text-2xl leading-relaxed text-gray-600">
{siteConfig.aboutMe}
I'm a passionate developer who loves creating clean and functional designs.
I enjoy learning new technologies, improving my skills, and turning ideas
into reality through code. When I'm not coding, I like to chill, listen to
music, and explore new things that inspire creativity.
</p>

<div class="pt-4">
<div class="flex flex-wrap gap-3">
{
siteConfig.skills.map((skill) => (
["HTML", "CSS", "JavaScript", "Tailwind", "Astro", "React"].map((skill) => (
<span class="px-3 sm:px-4 py-1.5 sm:py-2 bg-gray-100 text-gray-800 rounded-full text-sm sm:text-base md:text-lg font-medium hover:bg-gray-200 transition-colors duration-200">
{skill}
</span>
Expand Down