From 7e2b30fbccaa194595ef899375724e1a96186ea3 Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Mon, 8 Sep 2025 17:18:54 +0200 Subject: [PATCH] add --- src/components/Banner.tsx | 28 ++++++++++++++++++++++++++++ src/components/Dashboard.tsx | 2 +- src/components/Layout.tsx | 2 ++ src/components/Spotlight.tsx | 8 ++++---- src/styles/tailwind.css | 28 ++++++++++++++++++++++++++++ 5 files changed, 63 insertions(+), 5 deletions(-) create mode 100644 src/components/Banner.tsx diff --git a/src/components/Banner.tsx b/src/components/Banner.tsx new file mode 100644 index 0000000..8dfc69f --- /dev/null +++ b/src/components/Banner.tsx @@ -0,0 +1,28 @@ +import { XMarkIcon } from '@heroicons/react/20/solid' + +export function Banner() { + return ( +
+

+ ThreeFold is going commercial! + + Read our + 2025 Summer Round Up → + +

+
+ +
+
+ ) +} diff --git a/src/components/Dashboard.tsx b/src/components/Dashboard.tsx index 42ea41c..ba3238d 100644 --- a/src/components/Dashboard.tsx +++ b/src/components/Dashboard.tsx @@ -98,7 +98,7 @@ function StatCard({ e.currentTarget.style.filter = 'brightness(1)'; }} > -

{label}

+

{label}

{description}

diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index d2756bb..a567811 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -1,10 +1,12 @@ import { Footer } from '@/components/Footer' import { Header } from '@/components/Header' +import { Banner } from '@/components/Banner' export function Layout({ children }: { children: React.ReactNode }) { return ( <>
+
{children}