From f4f524a16e075e8d52948ec67e22d9d16e933b8f Mon Sep 17 00:00:00 2001
From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
Date: Fri, 1 Nov 2024 23:16:02 -0600
Subject: [PATCH] feat: add landing page finished
---
apps/website/app/[locale]/page.tsx | 3 +-
apps/website/components/CallToAction.tsx | 2 +-
apps/website/components/Header.tsx | 18 +-
apps/website/components/Hero.tsx | 282 +++++++++---------
apps/website/components/sponsors.tsx | 40 ++-
apps/website/components/stats.tsx | 172 +++++++++++
.../components/ui/animated-grid-pattern.tsx | 150 ++++++++++
apps/website/components/ui/number-ticker.tsx | 58 ++++
apps/website/components/ui/ripple.tsx | 264 +++++++++++++---
apps/website/components/ui/tooltip.tsx | 30 ++
apps/website/package.json | 1 +
apps/website/public/supafort.png | Bin 0 -> 5375 bytes
pnpm-lock.yaml | 85 ++++++
13 files changed, 915 insertions(+), 190 deletions(-)
create mode 100644 apps/website/components/stats.tsx
create mode 100644 apps/website/components/ui/animated-grid-pattern.tsx
create mode 100644 apps/website/components/ui/number-ticker.tsx
create mode 100644 apps/website/components/ui/tooltip.tsx
create mode 100644 apps/website/public/supafort.png
diff --git a/apps/website/app/[locale]/page.tsx b/apps/website/app/[locale]/page.tsx
index c3b5ce1..3faac8b 100644
--- a/apps/website/app/[locale]/page.tsx
+++ b/apps/website/app/[locale]/page.tsx
@@ -6,6 +6,7 @@ import { Testimonials } from "@/components/Testimonials";
import { FeaturesSectionDemo } from "@/components/features";
import { Pricing } from "@/components/pricing";
import { RippleDemo } from "@/components/sponsors";
+import { StatsSection } from "@/components/stats";
export default function Home() {
return (
@@ -14,12 +15,12 @@ export default function Home() {