Remove "View" buttons

This commit is contained in:
gpt-engineer-app[bot]
2025-09-29 22:36:41 +00:00
parent 65c649e4c6
commit 2c6acf21fe
2 changed files with 0 additions and 15 deletions

View File

@@ -2,7 +2,6 @@ import { MapPin, Star, Users, Clock, Castle, FerrisWheel, Waves, Tent } from 'lu
import { useNavigate } from 'react-router-dom';
import { Card, CardContent } from '@/components/ui/card';
import { Badge } from '@/components/ui/badge';
import { Button } from '@/components/ui/button';
import { Park } from '@/types/database';
interface ParkCardProps {
@@ -110,11 +109,6 @@ export function ParkCard({ park }: ParkCardProps) {
</div>
)}
</div>
{/* Action Button */}
<Button className="w-full mt-3 bg-gradient-to-r from-primary/80 to-secondary/80 hover:from-primary hover:to-secondary transition-all duration-300" size="sm">
Explore Park
</Button>
</CardContent>
</div>
</Card>;