Bob AI: fix build errors (attempt 1)
This commit is contained in:
@@ -33,13 +33,13 @@ export default function TeamSection() {
|
||||
members={members}
|
||||
/>
|
||||
</div>
|
||||
<div className="py-24 bg-background">
|
||||
<div className="max-w-6xl mx-auto px-6">
|
||||
<ScrollReveal>
|
||||
<div className="text-center mb-16">
|
||||
<div className="bg-background">
|
||||
<div className="max-w-content-width mx-auto px-6">
|
||||
<ScrollReveal variant="slide-up">
|
||||
<div className="text-center">
|
||||
<Tag text="Meet the Maestros" className="mb-4" />
|
||||
<h2 className="text-4xl md:text-5xl font-bold text-foreground mb-4">Our Passionate Pizza Crew</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">
|
||||
Behind every delicious pizza is a dedicated team committed to quality and a warm dining experience.
|
||||
</p>
|
||||
</div>
|
||||
@@ -47,8 +47,8 @@ export default function TeamSection() {
|
||||
|
||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
||||
{members.map((member, index) => (
|
||||
<ScrollReveal key={index} delay={index * 0.1}>
|
||||
<div className="group relative rounded-2xl overflow-hidden bg-card border border-border">
|
||||
<ScrollReveal key={index} variant="slide-up" delay={index * 0.1}>
|
||||
<div className="group relative rounded-theme overflow-hidden bg-card border border-border">
|
||||
<div className="relative aspect-[4/5] overflow-hidden">
|
||||
<ImageOrVideo
|
||||
imageSrc={member.imageSrc}
|
||||
@@ -73,4 +73,4 @@ export default function TeamSection() {
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user