File size: 2,003 Bytes
36fcfee
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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>
  );
}