@@ -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
2930const 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" >
0 commit comments