Bob AI: fix build errors (attempt 1)

This commit is contained in:
2026-02-25 11:29:55 +00:00
parent 965974c8ff
commit a4257379bd
4 changed files with 9 additions and 18 deletions

View File

@@ -47,7 +47,6 @@ export default function BlogPage() {
) : (
<div id="blog" data-section="blog">
<BlogCardTwo
posts={posts}
title="Latest Articles"
description="Insights and updates from our team"
animationType="slide-up"

View File

@@ -71,9 +71,9 @@ export default function SitePage() {
buttonAnimation="slide-up"
dashboard={{
title: "Featured Collection", stats: [
{ title: "Sustainable Materials", values: [100], valueSuffix: "%" },
{ title: "Customer Satisfaction", values: [98], valueSuffix: "%" },
{ title: "Global Shipping", values: [200], valueSuffix: "+ Countries" },
{ title: "Sustainable Materials", values: [100, 0, 0], valueSuffix: "%" },
{ title: "Customer Satisfaction", values: [98, 0, 0], valueSuffix: "%" },
{ title: "Global Shipping", values: [200, 0, 0], valueSuffix: "+ Countries" },
],
logoIcon: Coffee,
sidebarItems: [
@@ -83,14 +83,14 @@ export default function SitePage() {
],
buttons: [{ text: "View Details", href: "#products-section" }],
listItems: [
{ title: "Ceramic Collection" },
{ title: "Glass Series" },
{ title: "Travel Mugs" },
{ title: "Ceramic Collection", icon: Coffee, status: "active" },
{ title: "Glass Series", icon: Coffee, status: "active" },
{ title: "Travel Mugs", icon: Coffee, status: "active" },
],
imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-cup-tea-with-flowers-white-surface_141793-13652.jpg", searchPlaceholder: "Search products...", chartTitle: "Customer Ratings", chartData: [
{ name: "5 Stars", value: 85 },
{ name: "4 Stars", value: 10 },
{ name: "3 Stars", value: 5 },
{ label: "5 Stars", value: 85 },
{ label: "4 Stars", value: 10 },
{ label: "3 Stars", value: 5 },
],
listTitle: "Popular Categories", imageAlt: "Featured Dring Together cups collection"}}
ariaLabel="Hero section showcasing premium drinking cups"

View File

@@ -83,10 +83,6 @@ function ProductPageContent({ params }: ProductPageProps) {
brandName="Dring Together"
navItems={navItems}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
mobileMenuItems={[
...navItems,
{ type: 'button', text: "Cart", onClick: () => setCartOpen(true) }
]}
/>
);

View File

@@ -50,10 +50,6 @@ function ShopPageContent() {
brandName="Dring Together"
navItems={navItems}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
mobileMenuItems={[
...navItems,
{ type: 'button', text: "Cart", onClick: () => setCartOpen(true) }
]}
/>
);