@@ -5,11 +5,11 @@ import { ROADMAP } from "@/app/_constants/roadmap";
5
5
6
6
export default function Roadmap ( ) {
7
7
return (
8
- < section className = "flex w-full items-center justify-center bg-[#071511] px-4 py-40 md:h-[960px] md:max-h-screen" >
8
+ < section className = "flex w-full items-center justify-center bg-linear-to-b from-[#000000] to-[#002424] px-4 md:px-8 py-40 md:h-[960px] md:max-h-screen" >
9
9
< div className = "flex w-full max-w-[1440px] flex-col items-center justify-between gap-6 md:flex-row" >
10
10
< div className = "flex flex-col gap-6" >
11
11
< p className = "text-base text-[#E6FDFC]" > Roadmap</ p >
12
- < h2 className = "font-oceanic text-[40px] leading-[46px] whitespace-pre-line text-[#E6FDFC]" >
12
+ < h2 className = "font-oceanic text-[24px] leading-normal md:text-[ 40px] md: leading-[46px] whitespace-pre-line text-[#E6FDFC]" >
13
13
{ "Built from the ground up\nfor every layer of AI Agents" }
14
14
</ h2 >
15
15
< p className = "text-lg md:whitespace-pre-line text-[#A7B4B3]" >
@@ -28,20 +28,20 @@ export default function Roadmap() {
28
28
</ Link >
29
29
</ div >
30
30
31
- < div className = "flex w-full max-w-[646px] flex-col gap-4 drop-shadow-[0_0_100px_rgba(134,255,217,0.40)] md:w-auto" >
31
+ < div className = "flex w-full md: max-w-[646px] flex-col gap-4 drop-shadow-[0_0_100px_rgba(134,255,217,0.40)] md:w-auto" >
32
32
{ ROADMAP . map ( ( { title, keywords, className, itemClassName } ) => (
33
33
< div
34
34
key = { title }
35
- className = { `flex w-full flex-row gap-2 rounded-2xl p-3.5 md:w-[646px] md:rounded-[20px] overflow-scroll ${ className } ` }
35
+ className = { `flex w-full md: flex-row flex-col gap-2 rounded-2xl p-3.5 md:w-[646px] md:rounded-[20px] overflow-scroll ${ className } ` }
36
36
>
37
- < h3 className = "flex items-center min-w-32 flex-1 justify-center text-center text-lg md:text-[22px] whitespace-pre-line" >
37
+ < h3 className = "flex items-center min-w-32 font-semibold flex-1 justify-center text-center text-lg md:text-[22px] md: whitespace-pre-line" >
38
38
{ title }
39
39
</ h3 >
40
40
< div className = "flex flex-row gap-2" >
41
41
{ keywords . map ( ( keyword ) => (
42
42
< div
43
43
key = { keyword }
44
- className = "relative flex-1 rounded-md bg-linear-to-b from-[#18EDC9CC] to-[#18EDC933] p-px h-28 w-28 md:h-[132px] md:w-[132px] md:rounded-[10px]"
44
+ className = "relative flex-1 rounded-md bg-linear-to-b from-[#18EDC9CC] to-[#18EDC933] p-px min- h-28 min- w-28 md:h-[132px] md:w-[132px] md:rounded-[10px]"
45
45
>
46
46
< div
47
47
className = { `font-md flex h-full w-full bg-linear-to-b items-center justify-center gap-2 text-sm rounded-md text-center md:text-lg md:rounded-[10px] ${ itemClassName } ` }
0 commit comments