kumar-aditya's picture
Upload 42 files
36fcfee verified
import React from 'react';
import { motion } from 'framer-motion';
export default function About() {
return (
<div className="px-5 lg:px-28 flex justify-between flex-col lg:flex-row" id="about">
<motion.div
className="lg:w-1/2"
initial={{ opacity: 0, x: -50 }}
whileInView={{ opacity: 1, x: 0 }}
transition={{ type: "spring", stiffness: 80, damping: 10 }}
viewport={{ once: true }}
>
<img src="/assets/about-me.svg" alt="About Me Illustration" />
</motion.div>
<motion.div
className="lg:w-1/2"
initial={{ opacity: 0, x: 50 }}
whileInView={{ opacity: 1, x: 0 }}
transition={{ type: "spring", stiffness: 80, damping: 10, delay: 0.2 }}
viewport={{ once: true }}
>
<h2 className="lg:text-4xl text-2xl mt-4 lg:mt-0">
About <span className="font-extrabold">Me</span>
</h2>
<p className="text-[#71717A] text-sm/6 lg:text-base mt-5 lg:mt-10">
I'm a passionate cross-platform app developer specializing in <strong>Kotlin Multiplatform & Spring Boot</strong>. I thrive on blending technical expertise with modern mobile development to build high-performing, user-friendly applications.
</p>
<p className="text-[#71717A] text-sm/6 lg:text-base mt-3 lg:mt-5">
My app development journey has been focused on building <strong>cutting-edge cross-platform applications</strong> using <strong>Kotlin, Jetpack Compose, Spring Boot, Docker, Kafka, Redis, and more</strong>. I'm particularly interested in backend systems and mobile application development.
</p>
<p className="text-[#71717A] text-sm/6 lg:text-base mt-3 lg:mt-5">
Beyond coding, I enjoy competitive programming and have participated twice as an <strong>ICPC Regionalist</strong>. Feel free to connect with me on <strong>LinkedIn</strong>.
</p>
</motion.div>
</div>
);
}