Skip to content

Commit ce69b7d

Browse files
committed
regular fixes
1 parent d88a15d commit ce69b7d

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

frontend/components/cta.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ export default function CTA() {
1313
assistant can help you connect with us.
1414
</p>
1515
<div className="flex flex-col sm:flex-row justify-center gap-4">
16-
<Link href="/chatbot">
16+
<Link href="/healing-rooms">
1717
<Button className="bg-white text-purple-700 hover:bg-gray-100 px-8 py-3 rounded-md text-lg">
18-
Meet Zoe
18+
Healing Rooms
1919
</Button>
2020
</Link>
2121
<Link href="https://www.thinkround.org/donate">

frontend/components/footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export default function Footer() {
9292
{[
9393
{ name: 'About Us', href: 'https://www.thinkround.org/aboutus' },
9494
{ name: 'Shop Art', href: 'https://thinkround.shop/' },
95-
{ name: 'Zoe', href: '/chatbot' },
95+
{ name: 'Healing Rooms', href: '/healing-rooms' },
9696
{ name: 'AI Awareness', href: '/ai-awareness' },
9797
].map((link) => (
9898
<li key={link.name}>

frontend/components/hero.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ export default function Hero() {
2121
</p>
2222

2323
<div className="flex flex-col sm:flex-row gap-4">
24-
<Link href="/chatbot">
24+
<Link href="/healing-rooms">
2525
<Button className="bg-purple-700 hover:bg-purple-800 text-white px-8 py-3 rounded-md">
26-
Meet Zoe
26+
Healing Rooms
2727
</Button>
2828
</Link>
2929
</div>

frontend/components/modern-hero.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { useEffect, useState } from 'react';
44
import Link from 'next/link';
55
import { Button } from '@/components/ui/button';
6-
import { ArrowRight, Sparkles, Brain, Zap, Globe, Users, Shield } from 'lucide-react';
6+
import { ArrowRight, Sparkles, Brain, Zap, Globe, Users, Shield, Heart } from 'lucide-react';
77

88
export default function ModernHero() {
99
const [mounted, setMounted] = useState(false);
@@ -108,10 +108,10 @@ export default function ModernHero() {
108108
</Button>
109109
</Link>
110110

111-
<Link href="/chatbot">
111+
<Link href="/healing-rooms">
112112
<Button variant="outline" className="group bg-white/70 backdrop-blur-sm border-purple-300 text-purple-700 hover:bg-white/90 hover:border-purple-400 px-8 py-4 rounded-2xl text-lg font-semibold transition-all duration-300 transform hover:scale-105 shadow-lg">
113-
<Zap className="mr-2 w-5 h-5 group-hover:rotate-12 transition-transform" />
114-
Zoe
113+
<Heart className="mr-2 w-5 h-5 group-hover:rotate-12 transition-transform" />
114+
Healing Rooms
115115
</Button>
116116
</Link>
117117
</div>

0 commit comments

Comments
 (0)