Skip to content

Commit 3cd3381

Browse files
committed
added python and postgres to tech stack
1 parent 28d3077 commit 3cd3381

File tree

2 files changed

+8
-21
lines changed

2 files changed

+8
-21
lines changed

app/components/ServicesSectionV2.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ const services = [
2424
{ name: "Performance Optimization", src: "web" },
2525
{ name: "UI/UX Design", src: "world" },
2626
{ name: "Code Reviews", src: "planet" },
27+
{ name: "Advanced Motion", src: "cube" },
2728
]
2829

2930
const container: Variants = {
@@ -79,7 +80,7 @@ export const ServicesSectionV2: React.FC = ({ className = "" }: { className?: st
7980
return (
8081
<section id="technologies" className={clsx("inside-container relative z-2 items-start justify-center md:flex-row md:items-center", className)}>
8182
{/* LEFT COLUMN */}
82-
<div className="flex [flex:2_0_0px] flex-col gap-16">
83+
<div className="flex h-full flex-col gap-16 max-md:w-full md:[flex:2_0_0px]">
8384
<AnimatedH2>
8485
Engineering <br />
8586
<span className="text-slate-500">Toolkit</span>
@@ -92,7 +93,7 @@ export const ServicesSectionV2: React.FC = ({ className = "" }: { className?: st
9293
</Text>
9394

9495
<MotionUl
95-
className="grid w-full grid-cols-5 justify-items-center gap-8"
96+
className="grid grid-cols-5 gap-8 max-[420px]:justify-items-center md:justify-items-center"
9697
variants={container}
9798
initial="hidden"
9899
whileInView="visible"
@@ -126,7 +127,7 @@ export const ServicesSectionV2: React.FC = ({ className = "" }: { className?: st
126127
whileInView="visible"
127128
viewport={{ once: true, amount: 0.8 }}
128129
variants={container2}
129-
className="grid [flex:1_0_0px] grid-cols-2 gap-12 md:grid-cols-1"
130+
className="grid [flex:1_0_0px] grid-cols-2 gap-8 md:grid-cols-1"
130131
>
131132
{services.map(({ name, src }) => (
132133
<MotionLi key={name} variants={element2} className="flex items-center gap-3">

public/custom-icons.svg

Lines changed: 4 additions & 18 deletions
Loading

0 commit comments

Comments
 (0)