From 7f592e0962b6755147e8a81f3f587cc79e5f1345 Mon Sep 17 00:00:00 2001 From: Toromo7 Date: Sat, 25 Apr 2026 10:28:13 +0100 Subject: [PATCH] feat: implement smart contract activity timeline UI #46 --- app/page.tsx | 8 ++++- components/ActivityTimeline.tsx | 56 +++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+), 1 deletion(-) create mode 100644 components/ActivityTimeline.tsx diff --git a/app/page.tsx b/app/page.tsx index 2be56ee..2a2c081 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -6,6 +6,7 @@ import { Testimonials } from '@/components/testimonials' import { CTA } from '@/components/cta' import { Footer } from '@/components/footer' import { Navbar } from '@/components/navbar' +import ActivityTimeline from '@/components/ActivityTimeline'; export default function Home() { return ( @@ -13,6 +14,11 @@ export default function Home() { + {/* This is the timeline section we added */} +
+ +
+ @@ -20,5 +26,5 @@ export default function Home() {