Bob AI: fix build errors (attempt 1)

This commit is contained in:
kudinDmitriyUp
2026-06-02 16:17:20 +00:00
parent 2c869b1fe7
commit 3698c6d186

View File

@@ -1,20 +1,20 @@
// Created by create_section tool.
import React from 'react';
import { ScrollReveal } from '@/components/ui/ScrollReveal';
import { Tag } from '@/components/ui/Tag';
import { Button } from '@/components/ui/Button';
import ScrollReveal from '@/components/ui/ScrollReveal';
import Tag from '@/components/ui/Tag';
import Button from '@/components/ui/Button';
export default function BookingCtaSection(): React.JSX.Element {
return (
<div data-webild-section="booking-cta" className="py-24 bg-card">
<div data-webild-section="booking-cta" className="bg-card">
<div className="container mx-auto px-4 text-center">
<ScrollReveal variant="slide-up">
<Tag text="Ready to Relax?" className="mb-6 mx-auto" />
<Tag text="Ready to Relax?"className="mb-6 mx-auto" />
<h2 className="text-4xl md:text-5xl font-bold text-foreground mb-6">
Book Your Stay Today
</h2>
<p className="text-lg text-muted-foreground mb-10 max-w-2xl mx-auto">
<p className="text-lg text-muted-foreground max-w-content-width mx-auto">
Experience unrivaled luxury and impeccable service. Check our availability and secure your perfect getaway now.
</p>
<div className="flex flex-col sm:flex-row items-center justify-center gap-4">
@@ -25,4 +25,4 @@ export default function BookingCtaSection(): React.JSX.Element {
</div>
</div>
);
}
}