From 83764b33723c2b7367861302871f2ab5aa2f28cf Mon Sep 17 00:00:00 2001 From: eshanized Date: Thu, 9 Jan 2025 20:01:26 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20refactoring=20repetitive?= =?UTF-8?q?=20properties?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/about/Timeline.tsx | 100 +++++++++++++++--------------- 1 file changed, 51 insertions(+), 49 deletions(-) diff --git a/src/components/about/Timeline.tsx b/src/components/about/Timeline.tsx index c60390e7..7614e92b 100644 --- a/src/components/about/Timeline.tsx +++ b/src/components/about/Timeline.tsx @@ -3,66 +3,68 @@ import { Calendar } from 'lucide-react'; const releases = [ { version: '2024.1', date: '2024', description: 'Latest release with enhanced cloud support' }, - { version: '2023.4', date: '2023', description: 'Major UI overhaul and tool updates' }, - { version: '2023.1', date: '2023', description: 'Introduced new wireless testing tools' }, - { version: '2022.4', date: '2022', description: 'Added ARM64 support improvements' }, - { version: '2022.1', date: '2022', description: 'Enhanced container support' }, ]; export function Timeline() { return (
{/* Vertical timeline line */} -
); }