Bob AI: fix build errors (attempt 1)

This commit is contained in:
kudinDmitriyUp
2026-06-02 15:33:27 +00:00
parent a5283d27c8
commit 9717e121f6

View File

@@ -2,18 +2,18 @@
import React from 'react';
import Tag from '@/components/ui/Tag';
import { Card } from '@/components/ui/Card';
import Card from '@/components/ui/Card';
import Button from '@/components/ui/Button';
import { Calendar, Music, Beer } from 'lucide-react';
export default function EventsSection(): React.JSX.Element {
return (
<div data-webild-section="events" className="py-24 bg-background">
<div data-webild-section="events" className="bg-background">
<div className="container mx-auto px-4">
<div className="text-center mb-16">
<div className="text-center">
<Tag text="Upcoming Events" className="mb-4" />
<h2 className="text-4xl md:text-5xl font-bold text-foreground mb-6">Join the Community</h2>
<p className="text-lg text-muted-foreground max-w-2xl mx-auto">
<p className="text-lg text-muted-foreground max-w-content-width mx-auto">
From live music to special beer releases, there's always something happening at Cedar Mountain Brewery.
</p>
</div>
@@ -49,4 +49,4 @@ export default function EventsSection(): React.JSX.Element {
</div>
</div>
);
}
}