Merge version_1 into main #3

Merged
bender merged 4 commits from version_1 into main 2026-02-25 11:36:14 +00:00
4 changed files with 14 additions and 21 deletions

View File

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

View File

@@ -17,6 +17,7 @@ import {
Facebook,
Heart,
Instagram,
Package,
Shield,
ShoppingCart,
Sparkles,
@@ -71,26 +72,26 @@ export default function SitePage() {
buttonAnimation="slide-up"
dashboard={{
title: "Featured Collection", stats: [
{ title: "Sustainable Materials", values: [100], valueSuffix: "%", description: "Sustainably sourced materials." },
{ title: "Customer Satisfaction", values: [98], valueSuffix: "%", description: "Based on 500+ reviews." },
{ title: "Global Shipping", values: [200], valueSuffix: "+ Countries", description: "Available worldwide." },
{ title: "Sustainable Materials", values: [95, 98, 100], valueSuffix: "%", description: "Sustainably sourced materials." },
{ title: "Customer Satisfaction", values: [94, 96, 98], valueSuffix: "%", description: "Based on 500+ reviews." },
{ title: "Global Shipping", values: [180, 190, 200], valueSuffix: "+ Countries", description: "Available worldwide." },
],
logoIcon: Coffee,
sidebarItems: [
{ icon: Heart, label: "Favorites" },
{ icon: ShoppingCart, label: "Cart" },
{ icon: User, label: "Account" },
{ icon: Heart },
{ icon: ShoppingCart },
{ icon: User },
],
buttons: [{ text: "View Details", href: "#products-section" }],
listItems: [
{ title: "Ceramic Collection", description: "Handcrafted ceramic cups with unique glazes." },
{ title: "Glass Series", description: "Clear, durable glass designs for everyday use." },
{ title: "Travel Mugs", description: "Insulated mugs perfect for on-the-go." },
{ icon: Package, title: "Ceramic Collection", status: "Handcrafted ceramic cups with unique glazes." },
{ icon: Package, title: "Glass Series", status: "Clear, durable glass designs for everyday use." },
{ icon: Package, title: "Travel Mugs", status: "Insulated mugs perfect for on-the-go." },
],
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 },
{ value: 85 },
{ value: 10 },
{ value: 5 },
],
listTitle: "Popular Categories", imageAlt: "Featured Dring Together cups collection"
}}

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) }
]}
/>
);