diff --git a/src/components/Events.tsx b/src/components/Events.tsx
index 0acab75..b32a925 100644
--- a/src/components/Events.tsx
+++ b/src/components/Events.tsx
@@ -203,7 +203,7 @@ export function Events() {
-
{isMenuOpen && (
diff --git a/src/components/Hero.tsx b/src/components/Hero.tsx
index 7bfc5d6..a86debf 100644
--- a/src/components/Hero.tsx
+++ b/src/components/Hero.tsx
@@ -26,10 +26,10 @@ export function Hero() {
-
+
Join the Club
-
+
View Events
diff --git a/src/components/MerchShop.tsx b/src/components/MerchShop.tsx
index 6e0cb35..52cb092 100644
--- a/src/components/MerchShop.tsx
+++ b/src/components/MerchShop.tsx
@@ -55,7 +55,7 @@ export function MerchShop() {
{item.description}
{item.price}
-
+
Add to Cart
@@ -65,7 +65,7 @@ export function MerchShop() {
-
+
View All Products
diff --git a/src/components/Navigation.tsx b/src/components/Navigation.tsx
index 6511c38..d469a27 100644
--- a/src/components/Navigation.tsx
+++ b/src/components/Navigation.tsx
@@ -17,7 +17,7 @@ export function Navigation() {
Contact
-
+
Join Now
diff --git a/src/components/Shop.tsx b/src/components/Shop.tsx
index 4b2a450..2d7848a 100644
--- a/src/components/Shop.tsx
+++ b/src/components/Shop.tsx
@@ -272,9 +272,13 @@ export function Shop() {
Sale
)}
-
+
-
+
Join Strava Club
-
+
Learn More About Benefits
diff --git a/src/components/UpcomingEvents.tsx b/src/components/UpcomingEvents.tsx
index a64dcfc..035a3d2 100644
--- a/src/components/UpcomingEvents.tsx
+++ b/src/components/UpcomingEvents.tsx
@@ -1,4 +1,5 @@
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "./ui/card";
+import { Button } from "./ui/button";
import { Badge } from "./ui/badge";
import { Calendar, MapPin, Users } from "lucide-react";
@@ -70,9 +71,9 @@ export function UpcomingEvents() {
{event.location}
-
+
Join Event
-
+
))}
diff --git a/src/components/ui/button.tsx b/src/components/ui/button.tsx
index 40ef7aa..7cc8aa6 100644
--- a/src/components/ui/button.tsx
+++ b/src/components/ui/button.tsx
@@ -5,7 +5,7 @@ import { cva, type VariantProps } from "class-variance-authority";
import { cn } from "./utils";
const buttonVariants = cva(
- "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive",
+ "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all !cursor-pointer disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive",
{
variants: {
variant: {
@@ -50,6 +50,7 @@ function Button({
);