From 20c30f166db25513055afd2429fac7a8e890b58f Mon Sep 17 00:00:00 2001 From: v0 Date: Fri, 7 Nov 2025 19:35:38 +0000 Subject: [PATCH] feat: move RealWorldExamples section to bottom Position real-world examples near call-to-action areas. #VERCEL_SKIP Co-authored-by: Jeff Emmett <46964190+Jeff-Emmett@users.noreply.github.com> --- app/page.tsx | 2 +- components/features.tsx | 14 ++--- components/hero.tsx | 34 ++++++++----- components/real-world-examples.tsx | 82 +----------------------------- 4 files changed, 30 insertions(+), 102 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index 3a48c02..3a783ba 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -10,10 +10,10 @@ export default function Home() { return (
- +
diff --git a/components/features.tsx b/components/features.tsx index d4ebfea..7d17cc4 100644 --- a/components/features.tsx +++ b/components/features.tsx @@ -2,6 +2,13 @@ import { Card } from "@/components/ui/card" import { MessageSquare, FolderOpen, Shield, BarChart3, Coins, Lock } from "lucide-react" const features = [ + { + icon: Coins, + title: "Shared Funds", + description: "Allocate and manage community resources through transparent, customizable controls.", + color: "text-primary", + bgColor: "bg-primary/10", + }, { icon: MessageSquare, title: "Secure Messaging", @@ -24,13 +31,6 @@ const features = [ color: "text-accent", bgColor: "bg-accent/10", }, - { - icon: Coins, - title: "Shared Funds", - description: "Allocate and manage community resources through transparent, multi-sig controls.", - color: "text-primary", - bgColor: "bg-primary/10", - }, { icon: BarChart3, title: "Interactive Dashboards", diff --git a/components/hero.tsx b/components/hero.tsx index f2d1636..37d16c3 100644 --- a/components/hero.tsx +++ b/components/hero.tsx @@ -12,7 +12,7 @@ export function Hero() {
-
+
Welcome to

@@ -24,23 +24,31 @@ export function Hero() {

-
-

+

+ +
+ +
+

Remember back when the internet was cool?

+
- - +

- We may not have myspace anymore, but we have{" "} - (ou)r - Space -

-

- (and it's - online - ) + We may not have {"My"}space anymore, but we have

+
+

+ (ou)r + Space +

+

+ (and it's + online + ) +

+

diff --git a/components/real-world-examples.tsx b/components/real-world-examples.tsx index 2cad61c..5f52d5e 100644 --- a/components/real-world-examples.tsx +++ b/components/real-world-examples.tsx @@ -1,57 +1,3 @@ -import { Card } from "@/components/ui/card" -import { MapPin, Snowflake, Sprout, Users, Calendar, Coins } from "lucide-react" - -const examples = [ - { - icon: MapPin, - title: "Litter Cleanup Bounties", - description: - "Map trash hotspots in your neighborhood, set bounties for cleanup tasks, track progress on an interactive dashboard, and reward community members who pitch in.", - color: "text-primary", - bgColor: "bg-primary/10", - }, - { - icon: Snowflake, - title: "Snow Shoveling Co-op", - description: - "Elderly neighbors need help? Create a schedule, assign volunteers, track completed driveways, and manage community appreciation funds—all in your rspace.", - color: "text-secondary", - bgColor: "bg-secondary/10", - }, - { - icon: Sprout, - title: "Lawn Care Exchange", - description: - "Trade services with neighbors: mow a lawn, earn credits for garden help. Track commitments, share equipment calendars, and build real community connections.", - color: "text-accent", - bgColor: "bg-accent/10", - }, - { - icon: Users, - title: "Community Tool Library", - description: - "Share tools collectively. Schedule borrowing, track inventory, split maintenance costs through shared funds, and reduce waste by owning things together.", - color: "text-primary", - bgColor: "bg-primary/10", - }, - { - icon: Calendar, - title: "Neighborhood Events", - description: - "Plan block parties, potlucks, or skill-sharing workshops. Poll for dates, coordinate food signups, and manage event budgets transparently.", - color: "text-secondary", - bgColor: "bg-secondary/10", - }, - { - icon: Coins, - title: "Local Mutual Aid", - description: - "Pool resources for emergency support. Transparent fund management, democratic decision-making on aid distribution, all with zero-knowledge privacy.", - color: "text-accent", - bgColor: "bg-accent/10", - }, -] - export function RealWorldExamples() { return (

@@ -62,36 +8,10 @@ export function RealWorldExamples() {

rSpaces aren't just for chatting online—they're tools for making your{" "} - real neighborhood better. Here's how communities are - already using them: + real neighborhood better.

-
- {examples.map((example, index) => { - const Icon = example.icon - return ( - -
-
-
- -
-

{example.title}

-

{example.description}

-
- - ) - })} -
-