diff --git a/apps/web/components/sections/roadmap/faqs.tsx b/apps/web/components/sections/roadmap/faqs.tsx index f56d41e0d3..0761b734f3 100644 --- a/apps/web/components/sections/roadmap/faqs.tsx +++ b/apps/web/components/sections/roadmap/faqs.tsx @@ -34,7 +34,7 @@ function RoadmapFaqParagraph({ export function RoadmapFaqs({ data }: RoadmapFaqsProps) { return ( -
+

{data.heading} diff --git a/apps/web/components/sections/roadmap/overview.tsx b/apps/web/components/sections/roadmap/overview.tsx index c27b1e8cb6..df6fd664ca 100644 --- a/apps/web/components/sections/roadmap/overview.tsx +++ b/apps/web/components/sections/roadmap/overview.tsx @@ -16,7 +16,7 @@ export function RoadmapOverview({ data }: RoadmapOverviewProps) { return (

diff --git a/apps/web/components/sections/roadmap/release.tsx b/apps/web/components/sections/roadmap/release.tsx index 79db7d73e6..9518b16e8e 100644 --- a/apps/web/components/sections/roadmap/release.tsx +++ b/apps/web/components/sections/roadmap/release.tsx @@ -1,6 +1,5 @@ 'use client' -import { LogosMark } from '@acid-info/logos-ui' import Image from 'next/image' import { type KeyboardEvent, useRef, useState } from 'react' @@ -81,12 +80,12 @@ export function RoadmapRelease({ data }: RoadmapReleaseProps) { } return ( -
+
{data.items.map((item, index) => { const isActive = item.tab === activeRelease.tab @@ -105,7 +104,7 @@ export function RoadmapRelease({ data }: RoadmapReleaseProps) { aria-selected={isActive} aria-controls={panelId} tabIndex={isActive ? 0 : -1} - className={`flex h-[34px] w-[92px] shrink-0 cursor-pointer items-center justify-center px-2.5 font-mono text-xs leading-[1.35] font-semibold whitespace-nowrap uppercase ${ + className={`flex h-[40px] w-[120px] shrink-0 cursor-pointer items-center justify-center px-4 font-mono text-xs leading-[1.35] font-semibold whitespace-nowrap uppercase ${ isActive ? 'bg-brand-dark-green text-brand-off-white' : 'text-brand-dark-green' @@ -124,9 +123,9 @@ export function RoadmapRelease({ data }: RoadmapReleaseProps) { role="tabpanel" aria-labelledby={getReleaseTabId(activeReleaseIndex)} tabIndex={0} - className="mt-10 flex flex-col gap-10 min-[1025px]:mt-[18px] min-[1025px]:grid min-[1025px]:grid-cols-2 min-[1025px]:gap-3 desktop:h-[696px]" + className="mt-10 flex flex-col gap-10 min-[1025px]:mt-[18px] min-[1025px]:grid min-[1025px]:grid-cols-2 min-[1025px]:items-stretch min-[1025px]:gap-3 min-[1025px]:pt-[41px]" > -
+
@@ -273,31 +272,16 @@ function ReleaseFeature({ feature: RoadmapCopySection['release']['feature'] }) { return ( -
-
- {feature.image.alt} -
-
- -
-
- - - {feature.eyebrow} - -
-

- {feature.body} -

-
+
+ {feature.image.alt}
) }