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}