diff --git a/src/components/Globe.tsx b/src/components/Globe.tsx index b5bb2f6..9bde40e 100644 --- a/src/components/Globe.tsx +++ b/src/components/Globe.tsx @@ -32,7 +32,7 @@ export function Globe() { markers: [ { location: [37.7595, -122.4367], size: Math.random() * (maxMarkerSize - minMarkerSize) + minMarkerSize }, { location: [40.7128, -74.006], size: Math.random() * (maxMarkerSize - minMarkerSize) + minMarkerSize }, { location: [52.520008, 13.404954], size: Math.random() * (maxMarkerSize - minMarkerSize) + minMarkerSize }, { location: [51.507351, -0.127758], size: Math.random() * (maxMarkerSize - minMarkerSize) + minMarkerSize }, { location: [35.689487, 139.691711], size: Math.random() * (maxMarkerSize - minMarkerSize) + minMarkerSize }, { location: [22.396427, 114.109497], size: Math.random() * (maxMarkerSize - minMarkerSize) + minMarkerSize }, { location: [30.047503, 31.233702], size: Math.random() * (maxMarkerSize - minMarkerSize) + minMarkerSize }, { location: [-33.86882, 151.20929], size: Math.random() * (maxMarkerSize - minMarkerSize) + minMarkerSize }, { location: [-9.746956, -44.261249], size: Math.random() * (maxMarkerSize - minMarkerSize) + minMarkerSize }, ], onRender: (state) => { state.phi = phi; - phi += 0.0015; + phi += 0.0005; } }); diff --git a/src/sections/About.astro b/src/sections/About.astro index a908aab..65b5bb2 100644 --- a/src/sections/About.astro +++ b/src/sections/About.astro @@ -104,8 +104,15 @@ import profileImage from "../assets/profile.webp"; "Backend development", "Machine learning", ].map((item) => ( -
  • - +
  • + + {item}
  • )) diff --git a/src/sections/Projects.astro b/src/sections/Projects.astro index e9f077d..42724b6 100644 --- a/src/sections/Projects.astro +++ b/src/sections/Projects.astro @@ -39,6 +39,26 @@ const projects = [ url: "https://github.com", feature: true, }, + { + title: "Project 4", + paragraphs: [ + "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam nec purus nec.", + "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam nec purus nec.", + ], + badges: ["React", "TailwindCSS", "Vite"], + url: "https://github.com", + feature: false, + }, + { + title: "Project 5", + paragraphs: [ + "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam nec purus nec.", + "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam nec purus nec.", + ], + badges: ["React", "TailwindCSS", "Vite"], + url: "https://github.com", + feature: false, + }, ]; --- @@ -109,7 +129,7 @@ const projects = [
    @@ -183,35 +203,42 @@ const projects = [ class={cn( `relative group border-t border-r border-dashed w-full cursor-pointer hover:[box-shadow:inset_0_0_10px_0_rgba(255,255,255,0.2)] transition-all duration-500`, project.feature - ? "md:col-span-2 grid grid-cols-1 md:grid-cols-2" + ? "md:col-span-2 grid grid-cols-1 md:grid-cols-2 items-center" : "md:col-span-1 flex flex-col" )} > -
    -

    {project.title}

    +
    +

    + {project.title} +

    {project.paragraphs.map((paragraph) => (

    - {paragraph} + {paragraph}

    ))}
    -
    +
    {project.badges.map((badge) => ( - {badge} + {badge} ))}
    -
    -
    +
    +
    Project 1