create-brainerce-store 1.51.0 → 1.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +72 -0
- package/dist/index.js +9 -68
- package/messages/en.json +32 -0
- package/messages/he.json +32 -0
- package/package.json +1 -1
- package/templates/nextjs/base/.claude/commands/design.md +9 -0
- package/templates/nextjs/base/AI-GUIDE.md +52 -3
- package/templates/nextjs/base/CLAUDE.md +10 -0
- package/templates/nextjs/base/package.json.ejs +52 -39
- package/templates/nextjs/base/src/app/globals.css +36 -30
- package/templates/nextjs/base/src/components/checkout/payment-step.tsx +14 -10
- package/templates/nextjs/base/src/components/ui/accordion.tsx +53 -0
- package/templates/nextjs/base/src/components/ui/badge.tsx +32 -0
- package/templates/nextjs/base/src/components/ui/button.tsx +49 -0
- package/templates/nextjs/base/src/components/ui/card.tsx +55 -0
- package/templates/nextjs/base/src/components/ui/checkbox.tsx +28 -0
- package/templates/nextjs/base/src/components/ui/dialog.tsx +107 -0
- package/templates/nextjs/base/src/components/ui/input.tsx +22 -0
- package/templates/nextjs/base/src/components/ui/label.tsx +21 -0
- package/templates/nextjs/base/src/components/ui/radio-group.tsx +38 -0
- package/templates/nextjs/base/src/components/ui/select.tsx +153 -0
- package/templates/nextjs/base/src/components/ui/separator.tsx +26 -0
- package/templates/nextjs/base/src/components/ui/sheet.tsx +125 -0
- package/templates/nextjs/base/src/components/ui/skeleton.tsx +7 -0
- package/templates/nextjs/base/src/components/ui/tabs.tsx +55 -0
- package/templates/nextjs/base/src/components/ui/textarea.tsx +21 -0
- package/templates/nextjs/base/src/components/ui/tooltip.tsx +32 -0
- package/templates/nextjs/base/src/ui/cart/cart-bundle-offer.tsx +17 -11
- package/templates/nextjs/base/src/ui/cart/cart-item.tsx +2 -8
- package/templates/nextjs/base/src/ui/cart/cart-nudges.tsx +28 -39
- package/templates/nextjs/base/src/ui/cart/cart-summary.tsx +3 -1
- package/templates/nextjs/base/src/ui/cart/cart-upgrade-banner.tsx +8 -23
- package/templates/nextjs/base/src/ui/cart/cart-view.tsx +18 -27
- package/templates/nextjs/base/src/ui/cart/coupon-input.tsx +10 -21
- package/templates/nextjs/base/src/ui/cart/free-shipping-bar.tsx +2 -3
- package/templates/nextjs/base/src/ui/cart/reservation-countdown.tsx +95 -103
- package/templates/nextjs/base/src/ui/home/hero-section.tsx +4 -6
- package/templates/nextjs/base/src/ui/layout/announcement-bar.tsx.ejs +116 -125
- package/templates/nextjs/base/src/ui/layout/faq-section.tsx.ejs +90 -103
- package/templates/nextjs/base/src/ui/layout/header-account.tsx +2 -17
- package/templates/nextjs/base/src/ui/layout/language-switcher.tsx.ejs +80 -70
- package/templates/nextjs/base/src/ui/layout/site-footer.tsx.ejs +144 -164
- package/templates/nextjs/base/src/ui/layout/site-header.tsx.ejs +152 -182
- package/templates/nextjs/base/src/ui/product/customization-fields.tsx +456 -444
- package/templates/nextjs/base/src/ui/product/discount-badge.tsx +18 -22
- package/templates/nextjs/base/src/ui/product/frequently-bought-together.tsx +15 -27
- package/templates/nextjs/base/src/ui/product/modifier-group-selector.tsx +206 -175
- package/templates/nextjs/base/src/ui/product/price-display.tsx +3 -2
- package/templates/nextjs/base/src/ui/product/product-card.tsx +238 -271
- package/templates/nextjs/base/src/ui/product/product-client-section.tsx +455 -470
- package/templates/nextjs/base/src/ui/product/product-listing.tsx +96 -79
- package/templates/nextjs/base/src/ui/product/recommendation-section.tsx +102 -107
- package/templates/nextjs/base/src/ui/product/review-form.tsx +44 -43
- package/templates/nextjs/{designs/passepartout → base/src}/ui/product/reviews-section.tsx.ejs +108 -96
- package/templates/nextjs/base/src/ui/product/stock-badge.tsx +61 -63
- package/templates/nextjs/base/tailwind.config.ts +69 -42
- package/templates/nextjs/designs/{passepartout → atelier}/app-overlay/layout.tsx.ejs +23 -25
- package/templates/nextjs/designs/atelier/globals.css +396 -0
- package/templates/nextjs/designs/atelier/messages-patch/en.json +99 -0
- package/templates/nextjs/designs/atelier/messages-patch/he.json +99 -0
- package/templates/nextjs/designs/{passepartout → atelier}/ui/cart/cart-bundle-offer.tsx +110 -111
- package/templates/nextjs/designs/atelier/ui/cart/cart-drawer.tsx +163 -0
- package/templates/nextjs/designs/atelier/ui/cart/cart-item.tsx +140 -0
- package/templates/nextjs/designs/atelier/ui/cart/cart-nudges.tsx +34 -0
- package/templates/nextjs/designs/atelier/ui/cart/cart-summary.tsx +107 -0
- package/templates/nextjs/designs/{passepartout → atelier}/ui/cart/cart-upgrade-banner.tsx +123 -141
- package/templates/nextjs/designs/atelier/ui/cart/cart-view.tsx +147 -0
- package/templates/nextjs/designs/atelier/ui/cart/coupon-input.tsx +142 -0
- package/templates/nextjs/designs/{passepartout → atelier}/ui/cart/free-shipping-bar.tsx +77 -62
- package/templates/nextjs/designs/{passepartout → atelier}/ui/cart/reservation-countdown.tsx +89 -103
- package/templates/nextjs/designs/atelier/ui/home/benefits-band.tsx +34 -0
- package/templates/nextjs/designs/atelier/ui/home/category-tiles.tsx +148 -0
- package/templates/nextjs/designs/atelier/ui/home/discount-banner-strip.tsx +27 -0
- package/templates/nextjs/designs/atelier/ui/home/editorial-band.tsx +73 -0
- package/templates/nextjs/designs/atelier/ui/home/featured-products-section.tsx +36 -0
- package/templates/nextjs/designs/atelier/ui/home/hero-section.tsx +148 -0
- package/templates/nextjs/designs/atelier/ui/home/home-client.tsx +54 -0
- package/templates/nextjs/designs/atelier/ui/home/newsletter-section.tsx +78 -0
- package/templates/nextjs/designs/atelier/ui/home/testimonials-band.tsx +46 -0
- package/templates/nextjs/designs/atelier/ui/layout/announcement-bar.tsx +118 -0
- package/templates/nextjs/designs/atelier/ui/layout/faq-section.tsx +96 -0
- package/templates/nextjs/designs/atelier/ui/layout/header-account.tsx +36 -0
- package/templates/nextjs/designs/atelier/ui/layout/header-cart.tsx +36 -0
- package/templates/nextjs/designs/atelier/ui/layout/language-switcher.tsx.ejs +137 -0
- package/templates/nextjs/designs/atelier/ui/layout/nav-url.ts +14 -0
- package/templates/nextjs/designs/atelier/ui/layout/rich-text-block.tsx +34 -0
- package/templates/nextjs/designs/atelier/ui/layout/site-footer.tsx.ejs +141 -0
- package/templates/nextjs/designs/atelier/ui/layout/site-header.tsx.ejs +138 -0
- package/templates/nextjs/designs/atelier/ui/product/customization-fields.tsx +466 -0
- package/templates/nextjs/designs/{passepartout → atelier}/ui/product/discount-badge.tsx +17 -22
- package/templates/nextjs/designs/{passepartout → atelier}/ui/product/frequently-bought-together.tsx +196 -205
- package/templates/nextjs/designs/atelier/ui/product/modifier-group-selector.tsx +193 -0
- package/templates/nextjs/designs/atelier/ui/product/price-display.tsx +69 -0
- package/templates/nextjs/designs/atelier/ui/product/product-card.tsx +260 -0
- package/templates/nextjs/designs/atelier/ui/product/product-client-section.tsx +471 -0
- package/templates/nextjs/designs/atelier/ui/product/product-grid.tsx +47 -0
- package/templates/nextjs/designs/atelier/ui/product/product-listing.tsx +260 -0
- package/templates/nextjs/designs/atelier/ui/product/recommendation-section.tsx +95 -0
- package/templates/nextjs/designs/{passepartout → atelier}/ui/product/review-form.tsx +267 -294
- package/templates/nextjs/designs/atelier/ui/product/reviews-section.tsx.ejs +148 -0
- package/templates/nextjs/designs/atelier/ui/product/stock-badge.tsx +66 -0
- package/templates/nextjs/designs/atelier/ui/product/variant-selector.tsx +206 -0
- package/templates/nextjs/designs/atelier/ui/shared/cdn-image.tsx +29 -0
- package/templates/nextjs/designs/{passepartout → atelier}/ui/shared/fly-to-cart.ts +86 -85
- package/templates/nextjs/designs/atelier/ui/shared/icons.tsx +269 -0
- package/templates/nextjs/designs/atelier/ui/shared/loading-spinner.tsx +64 -0
- package/templates/nextjs/designs/atelier/ui/shared/reveal.tsx +71 -0
- package/templates/nextjs/designs/atelier/ui/shared/select-menu.tsx +125 -0
- package/templates/nextjs/themes/luxury/globals.css +405 -399
- package/templates/nextjs/themes/minimal/globals.css +36 -30
- package/templates/nextjs/themes/playful/globals.css +406 -400
- package/templates/nextjs/ui-canvas/cart/cart-bundle-offer.tsx +2 -0
- package/templates/nextjs/ui-canvas/cart/cart-item.tsx +2 -0
- package/templates/nextjs/ui-canvas/cart/cart-nudges.tsx +2 -0
- package/templates/nextjs/ui-canvas/cart/cart-summary.tsx +2 -0
- package/templates/nextjs/ui-canvas/cart/cart-upgrade-banner.tsx +2 -0
- package/templates/nextjs/ui-canvas/cart/cart-view.tsx +2 -2
- package/templates/nextjs/ui-canvas/cart/coupon-input.tsx +2 -0
- package/templates/nextjs/ui-canvas/cart/free-shipping-bar.tsx +2 -0
- package/templates/nextjs/ui-canvas/cart/reservation-countdown.tsx +2 -0
- package/templates/nextjs/ui-canvas/home/discount-banner-strip.tsx +1 -1
- package/templates/nextjs/ui-canvas/home/featured-products-section.tsx +1 -1
- package/templates/nextjs/ui-canvas/home/hero-section.tsx +1 -1
- package/templates/nextjs/ui-canvas/home/home-client.tsx +1 -1
- package/templates/nextjs/ui-canvas/layout/announcement-bar.tsx.ejs +1 -1
- package/templates/nextjs/ui-canvas/layout/faq-section.tsx.ejs +2 -2
- package/templates/nextjs/ui-canvas/layout/header-account.tsx +1 -1
- package/templates/nextjs/ui-canvas/layout/language-switcher.tsx.ejs +2 -0
- package/templates/nextjs/ui-canvas/layout/rich-text-block.tsx.ejs +2 -0
- package/templates/nextjs/ui-canvas/layout/site-footer.tsx.ejs +2 -2
- package/templates/nextjs/ui-canvas/layout/site-header.tsx.ejs +2 -2
- package/templates/nextjs/ui-canvas/product/customization-fields.tsx +2 -0
- package/templates/nextjs/ui-canvas/product/discount-badge.tsx +2 -0
- package/templates/nextjs/ui-canvas/product/frequently-bought-together.tsx +2 -0
- package/templates/nextjs/ui-canvas/product/modifier-group-selector.tsx +2 -0
- package/templates/nextjs/ui-canvas/product/price-display.tsx +2 -0
- package/templates/nextjs/ui-canvas/product/product-card.tsx +1 -1
- package/templates/nextjs/ui-canvas/product/product-client-section.tsx +1 -1
- package/templates/nextjs/ui-canvas/product/product-grid.tsx +1 -1
- package/templates/nextjs/ui-canvas/product/product-listing.tsx +1 -1
- package/templates/nextjs/ui-canvas/product/recommendation-section.tsx +4 -0
- package/templates/nextjs/ui-canvas/product/review-form.tsx +29 -32
- package/templates/nextjs/ui-canvas/product/{reviews-section.tsx → reviews-section.tsx.ejs} +26 -8
- package/templates/nextjs/ui-canvas/product/stock-badge.tsx +2 -0
- package/templates/nextjs/ui-canvas/product/variant-selector.tsx +2 -0
- package/templates/nextjs/ui-canvas/shared/cdn-image.tsx +2 -0
- package/templates/nextjs/ui-canvas/shared/loading-spinner.tsx +2 -0
- package/templates/nextjs/base/src/ui/product/reviews-section.tsx +0 -85
- package/templates/nextjs/designs/passepartout/globals.css +0 -412
- package/templates/nextjs/designs/passepartout/messages-patch/en.json +0 -87
- package/templates/nextjs/designs/passepartout/messages-patch/he.json +0 -87
- package/templates/nextjs/designs/passepartout/ui/cart/cart-nudges.tsx +0 -39
- package/templates/nextjs/designs/passepartout/ui/cart/cart-view.tsx +0 -149
- package/templates/nextjs/designs/passepartout/ui/home/home-client.tsx +0 -401
- package/templates/nextjs/designs/passepartout/ui/layout/announcement-bar.tsx +0 -139
- package/templates/nextjs/designs/passepartout/ui/layout/cart-link.tsx +0 -45
- package/templates/nextjs/designs/passepartout/ui/layout/faq-section.tsx +0 -103
- package/templates/nextjs/designs/passepartout/ui/layout/site-footer.tsx +0 -159
- package/templates/nextjs/designs/passepartout/ui/layout/site-header.tsx.ejs +0 -155
- package/templates/nextjs/designs/passepartout/ui/layout/trust-icons.tsx +0 -60
- package/templates/nextjs/designs/passepartout/ui/layout/whatsapp-button.tsx +0 -34
- package/templates/nextjs/designs/passepartout/ui/product/price-display.tsx +0 -111
- package/templates/nextjs/designs/passepartout/ui/product/product-card.tsx +0 -265
- package/templates/nextjs/designs/passepartout/ui/product/product-client-section.tsx +0 -667
- package/templates/nextjs/designs/passepartout/ui/product/product-grid.tsx +0 -35
- package/templates/nextjs/designs/passepartout/ui/product/product-listing.tsx +0 -427
- package/templates/nextjs/designs/passepartout/ui/product/recommendation-section.tsx +0 -113
- package/templates/nextjs/designs/passepartout/ui/product/stock-badge.tsx +0 -52
- package/templates/nextjs/designs/passepartout/ui/product/variant-selector.tsx +0 -307
- package/templates/nextjs/designs/passepartout/ui/shared/loading-spinner.tsx +0 -33
|
@@ -1,139 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Storefront announcement bar — fully driven by the merchant's dashboard.
|
|
3
|
-
*
|
|
4
|
-
* The merchant configures announcements in the Brainerce dashboard under
|
|
5
|
-
* Sell → Content → Announcement
|
|
6
|
-
*
|
|
7
|
-
* Everything below is generic rendering logic — it adapts automatically to
|
|
8
|
-
* any announcement shape returned by the API, so **you should not hardcode
|
|
9
|
-
* the message or severity here**.
|
|
10
|
-
*
|
|
11
|
-
* API contract:
|
|
12
|
-
* GET → client.content.announcement.list(locale) → Content<'ANNOUNCEMENT'>[]
|
|
13
|
-
* Empty array → renders nothing (page layout stays intact).
|
|
14
|
-
*
|
|
15
|
-
* Time-bounded: each announcement may have `startsAt` / `endsAt` ISO
|
|
16
|
-
* timestamps. We filter client-side so the cached server response can be
|
|
17
|
-
* shared across visitors regardless of the current time.
|
|
18
|
-
*/
|
|
19
|
-
'use client';
|
|
20
|
-
|
|
21
|
-
import * as React from 'react';
|
|
22
|
-
import type { Content } from 'brainerce';
|
|
23
|
-
|
|
24
|
-
interface AnnouncementBarProps {
|
|
25
|
-
/** Pre-fetched list from the server. Pass `[]` to render nothing. */
|
|
26
|
-
announcements: Content<'ANNOUNCEMENT'>[];
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
/* Severity arrives as text tone, never as a colored slab — the bar reads
|
|
30
|
-
like a gallery's opening-hours line, not a promo shout. */
|
|
31
|
-
const SEVERITY_STYLES: Record<'info' | 'warning' | 'success', string> = {
|
|
32
|
-
info: 'text-muted-foreground',
|
|
33
|
-
warning: 'text-destructive',
|
|
34
|
-
success: 'text-foreground',
|
|
35
|
-
};
|
|
36
|
-
|
|
37
|
-
const STORAGE_KEY = 'brainerce_dismissed_announcements';
|
|
38
|
-
|
|
39
|
-
export function AnnouncementBar({ announcements }: AnnouncementBarProps) {
|
|
40
|
-
const [dismissed, setDismissed] = React.useState<Set<string>>(() => new Set());
|
|
41
|
-
|
|
42
|
-
// Hydrate dismissals from localStorage on mount (avoids SSR/CSR mismatch).
|
|
43
|
-
React.useEffect(() => {
|
|
44
|
-
if (typeof window === 'undefined') return;
|
|
45
|
-
try {
|
|
46
|
-
const raw = window.localStorage.getItem(STORAGE_KEY);
|
|
47
|
-
if (raw) setDismissed(new Set(JSON.parse(raw) as string[]));
|
|
48
|
-
} catch {
|
|
49
|
-
// ignore malformed storage
|
|
50
|
-
}
|
|
51
|
-
}, []);
|
|
52
|
-
|
|
53
|
-
const dismiss = (id: string) => {
|
|
54
|
-
setDismissed((prev) => {
|
|
55
|
-
const next = new Set(prev);
|
|
56
|
-
next.add(id);
|
|
57
|
-
if (typeof window !== 'undefined') {
|
|
58
|
-
try {
|
|
59
|
-
window.localStorage.setItem(STORAGE_KEY, JSON.stringify([...next]));
|
|
60
|
-
} catch {
|
|
61
|
-
// ignore quota errors
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
return next;
|
|
65
|
-
});
|
|
66
|
-
};
|
|
67
|
-
|
|
68
|
-
const now = Date.now();
|
|
69
|
-
const visible = announcements.filter((a) => {
|
|
70
|
-
if (dismissed.has(a.id)) return false;
|
|
71
|
-
const startOk = !a.data.startsAt || new Date(a.data.startsAt).getTime() <= now;
|
|
72
|
-
const endOk = !a.data.endsAt || new Date(a.data.endsAt).getTime() >= now;
|
|
73
|
-
return startOk && endOk;
|
|
74
|
-
});
|
|
75
|
-
|
|
76
|
-
if (visible.length === 0) return null;
|
|
77
|
-
|
|
78
|
-
return (
|
|
79
|
-
<div
|
|
80
|
-
role="region"
|
|
81
|
-
aria-label="Site announcements"
|
|
82
|
-
className="bg-background border-border border-b"
|
|
83
|
-
>
|
|
84
|
-
<div className="mx-auto flex max-w-7xl flex-wrap items-center justify-center gap-x-3 gap-y-1 px-4 py-2.5">
|
|
85
|
-
{visible.map((announcement, idx) => {
|
|
86
|
-
const severity = announcement.data.severity;
|
|
87
|
-
const tone = SEVERITY_STYLES[severity] ?? SEVERITY_STYLES.info;
|
|
88
|
-
return (
|
|
89
|
-
<React.Fragment key={announcement.id}>
|
|
90
|
-
{idx > 0 ? (
|
|
91
|
-
<span aria-hidden="true" className="text-accent text-[0.6875rem]">
|
|
92
|
-
·
|
|
93
|
-
</span>
|
|
94
|
-
) : null}
|
|
95
|
-
<span
|
|
96
|
-
className={`inline-flex items-center gap-2 text-center text-[0.6875rem] tracking-[0.08em] ${tone}`}
|
|
97
|
-
>
|
|
98
|
-
<span>
|
|
99
|
-
{announcement.data.message}
|
|
100
|
-
{announcement.data.ctaHref && announcement.data.ctaLabel ? (
|
|
101
|
-
<>
|
|
102
|
-
{' '}
|
|
103
|
-
<a
|
|
104
|
-
href={announcement.data.ctaHref}
|
|
105
|
-
className="underline underline-offset-2"
|
|
106
|
-
>
|
|
107
|
-
{announcement.data.ctaLabel}
|
|
108
|
-
</a>
|
|
109
|
-
</>
|
|
110
|
-
) : null}
|
|
111
|
-
</span>
|
|
112
|
-
{announcement.data.dismissible ? (
|
|
113
|
-
<button
|
|
114
|
-
type="button"
|
|
115
|
-
onClick={() => dismiss(announcement.id)}
|
|
116
|
-
aria-label="Dismiss announcement"
|
|
117
|
-
className="text-current opacity-60 transition-opacity hover:opacity-100"
|
|
118
|
-
>
|
|
119
|
-
<svg
|
|
120
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
121
|
-
viewBox="0 0 24 24"
|
|
122
|
-
fill="none"
|
|
123
|
-
stroke="currentColor"
|
|
124
|
-
strokeWidth="1.5"
|
|
125
|
-
className="h-3 w-3"
|
|
126
|
-
aria-hidden="true"
|
|
127
|
-
>
|
|
128
|
-
<path strokeLinecap="round" strokeLinejoin="round" d="M6 18L18 6M6 6l12 12" />
|
|
129
|
-
</svg>
|
|
130
|
-
</button>
|
|
131
|
-
) : null}
|
|
132
|
-
</span>
|
|
133
|
-
</React.Fragment>
|
|
134
|
-
);
|
|
135
|
-
})}
|
|
136
|
-
</div>
|
|
137
|
-
</div>
|
|
138
|
-
);
|
|
139
|
-
}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
|
-
import * as React from 'react';
|
|
4
|
-
import { useCart } from '@/core/providers/store-provider';
|
|
5
|
-
|
|
6
|
-
const CartIcon = (props: React.SVGProps<SVGSVGElement>) => (
|
|
7
|
-
<svg
|
|
8
|
-
viewBox="0 0 24 24"
|
|
9
|
-
fill="none"
|
|
10
|
-
stroke="currentColor"
|
|
11
|
-
strokeWidth={1.5}
|
|
12
|
-
strokeLinecap="round"
|
|
13
|
-
strokeLinejoin="round"
|
|
14
|
-
aria-hidden="true"
|
|
15
|
-
{...props}
|
|
16
|
-
>
|
|
17
|
-
<circle cx="9" cy="21" r="1" />
|
|
18
|
-
<circle cx="20" cy="21" r="1" />
|
|
19
|
-
<path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6" />
|
|
20
|
-
</svg>
|
|
21
|
-
);
|
|
22
|
-
|
|
23
|
-
/**
|
|
24
|
-
* Header cart link with a live item-count badge. Also the landing pad for
|
|
25
|
-
* the fly-to-cart animation (`#cart-anchor` + `.cart-bump`).
|
|
26
|
-
*/
|
|
27
|
-
export function CartLink() {
|
|
28
|
-
const { itemCount } = useCart();
|
|
29
|
-
|
|
30
|
-
return (
|
|
31
|
-
<a
|
|
32
|
-
id="cart-anchor"
|
|
33
|
-
href="/cart"
|
|
34
|
-
aria-label="Cart"
|
|
35
|
-
className="text-muted-foreground hover:text-foreground relative inline-flex h-9 w-9 items-center justify-center transition-colors"
|
|
36
|
-
>
|
|
37
|
-
<CartIcon className="h-5 w-5" />
|
|
38
|
-
{itemCount > 0 && (
|
|
39
|
-
<span className="bg-primary text-primary-foreground tabular absolute -end-0.5 -top-0.5 flex h-4 min-w-4 items-center justify-center rounded-full px-1 text-[0.625rem] font-semibold leading-none">
|
|
40
|
-
{itemCount}
|
|
41
|
-
</span>
|
|
42
|
-
)}
|
|
43
|
-
</a>
|
|
44
|
-
);
|
|
45
|
-
}
|
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* FAQ accordion — fully driven by the merchant's dashboard configuration.
|
|
3
|
-
*
|
|
4
|
-
* The merchant configures FAQs in the Brainerce dashboard under
|
|
5
|
-
* Sell → Content → FAQ
|
|
6
|
-
*
|
|
7
|
-
* Each FAQ row has a `key` (e.g. 'main', 'shipping', 'returns'). Pass the
|
|
8
|
-
* pre-fetched payload as `faq`; this component knows nothing about which
|
|
9
|
-
* key it came from.
|
|
10
|
-
*
|
|
11
|
-
* Two render branches:
|
|
12
|
-
* 1. `faq` has items → accordion of question/answer pairs
|
|
13
|
-
* 2. `faq` is null OR has no items → friendly empty state with a contact
|
|
14
|
-
* CTA, so the /faq page never looks broken before the merchant seeds.
|
|
15
|
-
*
|
|
16
|
-
* Security: FAQ answers may contain merchant-authored HTML — we sanitize
|
|
17
|
-
* via `sanitizeHtml` before injecting via dangerouslySetInnerHTML.
|
|
18
|
-
*/
|
|
19
|
-
'use client';
|
|
20
|
-
|
|
21
|
-
import * as React from 'react';
|
|
22
|
-
import type { Content } from 'brainerce';
|
|
23
|
-
import { useTranslations } from '@/core/lib/translations';
|
|
24
|
-
import { sanitizeHtml } from '@/core/lib/sanitize';
|
|
25
|
-
|
|
26
|
-
interface FaqSectionProps {
|
|
27
|
-
/** Pre-fetched FAQ row. `null` renders the empty-state fallback. */
|
|
28
|
-
faq: Content<'FAQ'> | null;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export function FaqSection({ faq }: FaqSectionProps) {
|
|
32
|
-
const t = useTranslations('content');
|
|
33
|
-
const [openIdx, setOpenIdx] = React.useState<number | null>(0);
|
|
34
|
-
|
|
35
|
-
const items = faq?.data?.items ?? [];
|
|
36
|
-
const heading = faq?.name || t('faqTitle');
|
|
37
|
-
|
|
38
|
-
// Empty state — runs when the merchant hasn't created a FAQ row yet,
|
|
39
|
-
// or the row exists but contains no items. Keep the page non-empty and
|
|
40
|
-
// give the visitor a path to contact instead of a blank screen.
|
|
41
|
-
if (!faq || items.length === 0) {
|
|
42
|
-
return (
|
|
43
|
-
<section className="mx-auto max-w-3xl px-4 py-16 text-center sm:px-6 lg:px-8">
|
|
44
|
-
<h1 className="text-foreground mb-3 text-2xl font-semibold sm:text-3xl">{heading}</h1>
|
|
45
|
-
<p className="text-muted-foreground mb-6 text-sm sm:text-base">
|
|
46
|
-
<strong className="text-foreground">{t('faqEmptyTitle')}</strong>
|
|
47
|
-
<br />
|
|
48
|
-
{t('faqEmptyBody')}
|
|
49
|
-
</p>
|
|
50
|
-
<a
|
|
51
|
-
href="/contact"
|
|
52
|
-
className="bg-primary text-primary-foreground inline-flex items-center justify-center rounded-none px-4 py-2 text-sm font-medium transition-colors hover:opacity-90"
|
|
53
|
-
>
|
|
54
|
-
{t('faqContactCta')}
|
|
55
|
-
</a>
|
|
56
|
-
</section>
|
|
57
|
-
);
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
return (
|
|
61
|
-
<section className="mx-auto max-w-3xl px-4 py-10 sm:px-6 lg:px-8">
|
|
62
|
-
<h1 className="text-foreground mb-6 text-2xl font-semibold sm:text-3xl">{heading}</h1>
|
|
63
|
-
<ul className="border-border divide-border divide-y rounded-none border">
|
|
64
|
-
{items.map((item, idx) => {
|
|
65
|
-
const open = openIdx === idx;
|
|
66
|
-
return (
|
|
67
|
-
<li key={idx}>
|
|
68
|
-
<button
|
|
69
|
-
type="button"
|
|
70
|
-
onClick={() => setOpenIdx(open ? null : idx)}
|
|
71
|
-
aria-expanded={open}
|
|
72
|
-
className="hover:bg-muted/40 flex w-full items-center justify-between gap-4 p-4 text-start transition-colors"
|
|
73
|
-
>
|
|
74
|
-
<span className="text-foreground text-sm font-medium sm:text-base">
|
|
75
|
-
{item.question}
|
|
76
|
-
</span>
|
|
77
|
-
<svg
|
|
78
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
79
|
-
viewBox="0 0 24 24"
|
|
80
|
-
fill="none"
|
|
81
|
-
stroke="currentColor"
|
|
82
|
-
strokeWidth="2"
|
|
83
|
-
className={`text-muted-foreground h-4 w-4 transition-transform ${
|
|
84
|
-
open ? 'rotate-180' : ''
|
|
85
|
-
}`}
|
|
86
|
-
aria-hidden="true"
|
|
87
|
-
>
|
|
88
|
-
<path strokeLinecap="round" strokeLinejoin="round" d="M19 9l-7 7-7-7" />
|
|
89
|
-
</svg>
|
|
90
|
-
</button>
|
|
91
|
-
{open ? (
|
|
92
|
-
<div
|
|
93
|
-
className="text-muted-foreground prose prose-sm dark:prose-invert max-w-none px-4 pb-4 text-sm leading-relaxed"
|
|
94
|
-
dangerouslySetInnerHTML={{ __html: sanitizeHtml(item.answer) }}
|
|
95
|
-
/>
|
|
96
|
-
) : null}
|
|
97
|
-
</li>
|
|
98
|
-
);
|
|
99
|
-
})}
|
|
100
|
-
</ul>
|
|
101
|
-
</section>
|
|
102
|
-
);
|
|
103
|
-
}
|
|
@@ -1,159 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Storefront footer — fully driven by the merchant's dashboard configuration.
|
|
3
|
-
*
|
|
4
|
-
* The merchant configures the footer in the Brainerce dashboard under
|
|
5
|
-
* Sell → Content → Footer
|
|
6
|
-
*
|
|
7
|
-
* Renders a brand block (store-name + social icons), the merchant's link
|
|
8
|
-
* columns, and a copyright bar. Social icons are inline SVGs so the
|
|
9
|
-
* scaffold stays dependency-free; unknown platforms fall back to a
|
|
10
|
-
* letter avatar.
|
|
11
|
-
*
|
|
12
|
-
* API contract:
|
|
13
|
-
* GET → client.content.footer.get('main', locale) → Content<'FOOTER'> | null
|
|
14
|
-
* Returns null on 404 — we render a minimal fallback so the layout never
|
|
15
|
-
* crashes when the merchant hasn't seeded the footer yet.
|
|
16
|
-
*/
|
|
17
|
-
import * as React from 'react';
|
|
18
|
-
import type { Content } from 'brainerce';
|
|
19
|
-
|
|
20
|
-
interface SiteFooterProps {
|
|
21
|
-
/** Pre-fetched footer payload (server-side). `null` triggers fallback rendering. */
|
|
22
|
-
footer: Content<'FOOTER'> | null;
|
|
23
|
-
/** Store name shown in the brand block + fallback copyright. */
|
|
24
|
-
storeName?: string;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
type SvgComponent = React.ComponentType<React.SVGProps<SVGSVGElement>>;
|
|
28
|
-
|
|
29
|
-
const InstagramIcon: SvgComponent = (props) => (
|
|
30
|
-
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" aria-hidden="true" {...props}>
|
|
31
|
-
<rect x="2" y="2" width="20" height="20" rx="5" ry="5" />
|
|
32
|
-
<path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z" />
|
|
33
|
-
<line x1="17.5" y1="6.5" x2="17.51" y2="6.5" />
|
|
34
|
-
</svg>
|
|
35
|
-
);
|
|
36
|
-
|
|
37
|
-
const FacebookIcon: SvgComponent = (props) => (
|
|
38
|
-
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" aria-hidden="true" {...props}>
|
|
39
|
-
<path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z" />
|
|
40
|
-
</svg>
|
|
41
|
-
);
|
|
42
|
-
|
|
43
|
-
const XIcon: SvgComponent = (props) => (
|
|
44
|
-
<svg viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" {...props}>
|
|
45
|
-
<path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
|
|
46
|
-
</svg>
|
|
47
|
-
);
|
|
48
|
-
|
|
49
|
-
const LinkedInIcon: SvgComponent = (props) => (
|
|
50
|
-
<svg viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" {...props}>
|
|
51
|
-
<path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.852 3.37-1.852 3.601 0 4.267 2.37 4.267 5.455v6.288zM5.337 7.433a2.062 2.062 0 1 1 0-4.125 2.063 2.063 0 0 1 0 4.125zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.225 0z" />
|
|
52
|
-
</svg>
|
|
53
|
-
);
|
|
54
|
-
|
|
55
|
-
const YouTubeIcon: SvgComponent = (props) => (
|
|
56
|
-
<svg viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" {...props}>
|
|
57
|
-
<path d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z" />
|
|
58
|
-
</svg>
|
|
59
|
-
);
|
|
60
|
-
|
|
61
|
-
const TikTokIcon: SvgComponent = (props) => (
|
|
62
|
-
<svg viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" {...props}>
|
|
63
|
-
<path d="M19.59 6.69a4.83 4.83 0 0 1-3.77-4.25V2h-3.45v13.67a2.89 2.89 0 0 1-5.2 1.74 2.89 2.89 0 0 1 2.31-4.64 2.93 2.93 0 0 1 .88.13V9.4a6.84 6.84 0 0 0-1-.05A6.33 6.33 0 0 0 5.8 20.1a6.34 6.34 0 0 0 10.86-4.43v-7a8.16 8.16 0 0 0 4.77 1.52v-3.4a4.85 4.85 0 0 1-1.84-.1z" />
|
|
64
|
-
</svg>
|
|
65
|
-
);
|
|
66
|
-
|
|
67
|
-
const SOCIAL_ICONS: Record<string, SvgComponent> = {
|
|
68
|
-
instagram: InstagramIcon,
|
|
69
|
-
facebook: FacebookIcon,
|
|
70
|
-
x: XIcon,
|
|
71
|
-
twitter: XIcon,
|
|
72
|
-
linkedin: LinkedInIcon,
|
|
73
|
-
youtube: YouTubeIcon,
|
|
74
|
-
tiktok: TikTokIcon,
|
|
75
|
-
};
|
|
76
|
-
|
|
77
|
-
export function SiteFooter({ footer, storeName }: SiteFooterProps) {
|
|
78
|
-
const data = footer?.data;
|
|
79
|
-
const columns = data?.columns ?? [];
|
|
80
|
-
const social = data?.social ?? [];
|
|
81
|
-
const year = new Date().getFullYear();
|
|
82
|
-
const brandLabel = storeName ?? 'Store';
|
|
83
|
-
|
|
84
|
-
if (!data || (columns.length === 0 && !data.copyright && social.length === 0)) {
|
|
85
|
-
return (
|
|
86
|
-
<footer className="border-border bg-background text-muted-foreground mt-16 border-t py-8">
|
|
87
|
-
<div className="mx-auto max-w-7xl px-4 text-center text-[0.6875rem] tracking-[0.08em] sm:px-6 lg:px-8">
|
|
88
|
-
© {year} {brandLabel}. All rights reserved.
|
|
89
|
-
</div>
|
|
90
|
-
</footer>
|
|
91
|
-
);
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
return (
|
|
95
|
-
<footer className="border-border bg-background mt-16 border-t">
|
|
96
|
-
<div className="mx-auto max-w-7xl px-4 py-14 sm:px-6 lg:px-8">
|
|
97
|
-
<div className="grid grid-cols-1 gap-10 md:grid-cols-12">
|
|
98
|
-
<div className="md:col-span-4">
|
|
99
|
-
<a href="/" className="text-foreground font-serif text-lg font-normal">
|
|
100
|
-
{brandLabel}
|
|
101
|
-
</a>
|
|
102
|
-
{social.length > 0 ? (
|
|
103
|
-
<div className="mt-4 flex flex-wrap items-center gap-2">
|
|
104
|
-
{social.map((entry, idx) => {
|
|
105
|
-
const key = entry.platform.toLowerCase();
|
|
106
|
-
const Icon = SOCIAL_ICONS[key];
|
|
107
|
-
return (
|
|
108
|
-
<a
|
|
109
|
-
key={`${entry.platform}-${idx}`}
|
|
110
|
-
href={entry.url}
|
|
111
|
-
target="_blank"
|
|
112
|
-
rel="noopener noreferrer"
|
|
113
|
-
aria-label={entry.platform}
|
|
114
|
-
className="border-border hover:border-foreground hover:text-foreground text-muted-foreground inline-flex h-9 w-9 items-center justify-center border transition-colors"
|
|
115
|
-
>
|
|
116
|
-
{Icon ? (
|
|
117
|
-
<Icon className="h-4 w-4" strokeWidth={1.5} />
|
|
118
|
-
) : (
|
|
119
|
-
<span className="text-xs font-medium uppercase">
|
|
120
|
-
{entry.platform.charAt(0)}
|
|
121
|
-
</span>
|
|
122
|
-
)}
|
|
123
|
-
</a>
|
|
124
|
-
);
|
|
125
|
-
})}
|
|
126
|
-
</div>
|
|
127
|
-
) : null}
|
|
128
|
-
</div>
|
|
129
|
-
|
|
130
|
-
{columns.length > 0 ? (
|
|
131
|
-
<div className="grid grid-cols-2 gap-8 sm:grid-cols-3 md:col-span-8">
|
|
132
|
-
{columns.map((col, idx) => (
|
|
133
|
-
<div key={`${col.title}-${idx}`}>
|
|
134
|
-
<h3 className="placard mb-4 font-sans">{col.title}</h3>
|
|
135
|
-
<ul className="space-y-2">
|
|
136
|
-
{col.links.map((link, linkIdx) => (
|
|
137
|
-
<li key={`${link.url}-${linkIdx}`}>
|
|
138
|
-
<a
|
|
139
|
-
href={link.url}
|
|
140
|
-
className="text-muted-foreground hover:text-foreground text-sm transition-colors"
|
|
141
|
-
>
|
|
142
|
-
{link.label}
|
|
143
|
-
</a>
|
|
144
|
-
</li>
|
|
145
|
-
))}
|
|
146
|
-
</ul>
|
|
147
|
-
</div>
|
|
148
|
-
))}
|
|
149
|
-
</div>
|
|
150
|
-
) : null}
|
|
151
|
-
</div>
|
|
152
|
-
|
|
153
|
-
<div className="border-border text-muted-foreground mt-12 flex flex-col items-center justify-between gap-2 border-t pt-6 text-[0.6875rem] tracking-[0.08em] sm:flex-row">
|
|
154
|
-
<span>{data.copyright ?? `© ${year} ${brandLabel}. All rights reserved.`}</span>
|
|
155
|
-
</div>
|
|
156
|
-
</div>
|
|
157
|
-
</footer>
|
|
158
|
-
);
|
|
159
|
-
}
|
|
@@ -1,155 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Merchant-controlled site header.
|
|
3
|
-
*
|
|
4
|
-
* The merchant configures the header in the Brainerce dashboard under
|
|
5
|
-
* Sell → Content → Header
|
|
6
|
-
*
|
|
7
|
-
* Renders brand (logo or store-name fallback) + nav items + CTA + cart link,
|
|
8
|
-
* with a `<details>` mobile menu that works without client-side JS. Everything
|
|
9
|
-
* is generic — do NOT hardcode nav labels or logo paths here; the merchant
|
|
10
|
-
* edits them in the dashboard and the change propagates within ~5 minutes.
|
|
11
|
-
*
|
|
12
|
-
* If `header` is null (404 from the API, or the merchant deleted the row),
|
|
13
|
-
* we render a minimal static fallback with just the brand label and cart link
|
|
14
|
-
* so the layout never collapses. New stores ship with a seeded HEADER row
|
|
15
|
-
* from the backend (StoresService.seedDefaultContent), so the populated
|
|
16
|
-
* branch is the common case.
|
|
17
|
-
*/
|
|
18
|
-
import * as React from 'react';
|
|
19
|
-
import type { Content } from 'brainerce';
|
|
20
|
-
import { HeaderAccount } from './header-account';
|
|
21
|
-
import { CartLink } from '@/ui/layout/cart-link';
|
|
22
|
-
<% if (i18nEnabled) { %>
|
|
23
|
-
import { LanguageSwitcher } from '@/ui/layout/language-switcher';
|
|
24
|
-
<% } %>
|
|
25
|
-
|
|
26
|
-
interface SiteHeaderProps {
|
|
27
|
-
/** Pre-fetched header payload (server-side). `null` triggers static fallback. */
|
|
28
|
-
header: Content<'HEADER'> | null;
|
|
29
|
-
/** Fallback brand label when the merchant hasn't uploaded a logo yet. */
|
|
30
|
-
storeName?: string;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
const MenuIcon = (props: React.SVGProps<SVGSVGElement>) => (
|
|
34
|
-
<svg
|
|
35
|
-
viewBox="0 0 24 24"
|
|
36
|
-
fill="none"
|
|
37
|
-
stroke="currentColor"
|
|
38
|
-
strokeWidth={1.5}
|
|
39
|
-
strokeLinecap="round"
|
|
40
|
-
strokeLinejoin="round"
|
|
41
|
-
aria-hidden="true"
|
|
42
|
-
{...props}
|
|
43
|
-
>
|
|
44
|
-
<line x1="4" y1="6" x2="20" y2="6" />
|
|
45
|
-
<line x1="4" y1="12" x2="20" y2="12" />
|
|
46
|
-
<line x1="4" y1="18" x2="20" y2="18" />
|
|
47
|
-
</svg>
|
|
48
|
-
);
|
|
49
|
-
|
|
50
|
-
export function SiteHeader({ header, storeName }: SiteHeaderProps) {
|
|
51
|
-
const data = header?.data;
|
|
52
|
-
const logo = data?.logo;
|
|
53
|
-
const navItems = data?.navItems ?? [];
|
|
54
|
-
const cta = data?.cta;
|
|
55
|
-
const brandLabel = logo?.alt || storeName || 'Store';
|
|
56
|
-
|
|
57
|
-
// Static fallback — runs when the Content API returned null (no HEADER row
|
|
58
|
-
// for this store yet, or fetch failed). Keep the brand + cart so the page
|
|
59
|
-
// always has a clickable home link and entry to checkout, but no nav since
|
|
60
|
-
// the merchant hasn't defined any items.
|
|
61
|
-
if (!header) {
|
|
62
|
-
return (
|
|
63
|
-
<header className="border-border bg-background/95 supports-[backdrop-filter]:bg-background/70 sticky top-0 z-40 border-b backdrop-blur">
|
|
64
|
-
<div className="mx-auto flex h-16 max-w-7xl items-center justify-between gap-4 px-4 sm:px-6 lg:px-8">
|
|
65
|
-
<a href="/" className="font-serif text-lg font-normal" aria-label={brandLabel}>
|
|
66
|
-
{brandLabel}
|
|
67
|
-
</a>
|
|
68
|
-
<div className="flex items-center gap-2">
|
|
69
|
-
<% if (i18nEnabled) { %>
|
|
70
|
-
<LanguageSwitcher />
|
|
71
|
-
<% } %>
|
|
72
|
-
<HeaderAccount />
|
|
73
|
-
<CartLink />
|
|
74
|
-
</div>
|
|
75
|
-
</div>
|
|
76
|
-
</header>
|
|
77
|
-
);
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
return (
|
|
81
|
-
<header className="border-border bg-background/95 supports-[backdrop-filter]:bg-background/70 sticky top-0 z-40 border-b backdrop-blur">
|
|
82
|
-
<div className="mx-auto flex h-16 max-w-7xl items-center justify-between gap-4 px-4 sm:px-6 lg:px-8">
|
|
83
|
-
<a
|
|
84
|
-
href="/"
|
|
85
|
-
className="flex items-center gap-2 font-serif font-normal"
|
|
86
|
-
aria-label={brandLabel}
|
|
87
|
-
>
|
|
88
|
-
{logo ? (
|
|
89
|
-
// eslint-disable-next-line @next/next/no-img-element -- merchant-supplied URL, dynamic optimization handled by CDN
|
|
90
|
-
<img src={logo.src} alt={logo.alt} className="h-7 w-auto" />
|
|
91
|
-
) : (
|
|
92
|
-
<span className="text-lg">{brandLabel}</span>
|
|
93
|
-
)}
|
|
94
|
-
</a>
|
|
95
|
-
|
|
96
|
-
{navItems.length > 0 ? (
|
|
97
|
-
<nav className="hidden items-center gap-10 md:flex">
|
|
98
|
-
{navItems.map((item, idx) => (
|
|
99
|
-
<a
|
|
100
|
-
key={`${item.url}-${idx}`}
|
|
101
|
-
href={item.url}
|
|
102
|
-
className="text-muted-foreground hover:text-foreground group relative text-xs transition-colors"
|
|
103
|
-
>
|
|
104
|
-
{item.label}
|
|
105
|
-
<span className="bg-foreground absolute -bottom-0.5 start-0 end-0 h-px origin-right scale-x-0 transition-transform duration-200 group-hover:scale-x-100" />
|
|
106
|
-
</a>
|
|
107
|
-
))}
|
|
108
|
-
</nav>
|
|
109
|
-
) : null}
|
|
110
|
-
|
|
111
|
-
<div className="flex items-center gap-2">
|
|
112
|
-
{cta ? (
|
|
113
|
-
<a
|
|
114
|
-
href={cta.url}
|
|
115
|
-
className="bg-primary text-primary-foreground hidden items-center justify-center px-4 py-2 text-xs font-semibold transition-colors sm:inline-flex"
|
|
116
|
-
>
|
|
117
|
-
{cta.label}
|
|
118
|
-
</a>
|
|
119
|
-
) : null}
|
|
120
|
-
|
|
121
|
-
<% if (i18nEnabled) { %>
|
|
122
|
-
<LanguageSwitcher />
|
|
123
|
-
<% } %>
|
|
124
|
-
|
|
125
|
-
<HeaderAccount />
|
|
126
|
-
|
|
127
|
-
<CartLink />
|
|
128
|
-
|
|
129
|
-
{navItems.length > 0 ? (
|
|
130
|
-
<details className="group relative md:hidden">
|
|
131
|
-
<summary className="text-muted-foreground hover:text-foreground inline-flex h-9 w-9 cursor-pointer list-none items-center justify-center transition-colors [&::-webkit-details-marker]:hidden">
|
|
132
|
-
<MenuIcon className="h-5 w-5" />
|
|
133
|
-
<span className="sr-only">Menu</span>
|
|
134
|
-
</summary>
|
|
135
|
-
<nav className="border-border bg-surface absolute end-0 top-full z-50 mt-2 w-56 overflow-hidden border">
|
|
136
|
-
<ul className="py-2">
|
|
137
|
-
{navItems.map((item, idx) => (
|
|
138
|
-
<li key={`m-${item.url}-${idx}`}>
|
|
139
|
-
<a
|
|
140
|
-
href={item.url}
|
|
141
|
-
className="text-muted-foreground hover:text-foreground hover:bg-muted block px-4 py-3 text-sm transition-colors"
|
|
142
|
-
>
|
|
143
|
-
{item.label}
|
|
144
|
-
</a>
|
|
145
|
-
</li>
|
|
146
|
-
))}
|
|
147
|
-
</ul>
|
|
148
|
-
</nav>
|
|
149
|
-
</details>
|
|
150
|
-
) : null}
|
|
151
|
-
</div>
|
|
152
|
-
</div>
|
|
153
|
-
</header>
|
|
154
|
-
);
|
|
155
|
-
}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
|
-
import { useTranslations } from '@/core/lib/translations';
|
|
4
|
-
|
|
5
|
-
const ICONS = {
|
|
6
|
-
truck: (
|
|
7
|
-
<path d="M1 8h11v8H1zM12 10h4l3 3v3h-7zM5.5 19a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zM16.5 19a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z" />
|
|
8
|
-
),
|
|
9
|
-
shield: <path d="M12 3l7 3v5c0 4.5-3 8.5-7 10-4-1.5-7-5.5-7-10V6l7-3z" />,
|
|
10
|
-
lock: (
|
|
11
|
-
<>
|
|
12
|
-
<rect x="5" y="11" width="14" height="9" />
|
|
13
|
-
<path d="M8 11V7a4 4 0 0 1 8 0v4" />
|
|
14
|
-
</>
|
|
15
|
-
),
|
|
16
|
-
gift: (
|
|
17
|
-
<>
|
|
18
|
-
<rect x="3" y="8" width="18" height="4" />
|
|
19
|
-
<path d="M5 12v8h14v-8M12 8v12M12 8s-4 0-5-2c-.7-1.4.5-3 2-3 2.5 0 3 5 3 5zM12 8s4 0 5-2c.7-1.4-.5-3-2-3-2.5 0-3 5-3 5z" />
|
|
20
|
-
</>
|
|
21
|
-
),
|
|
22
|
-
};
|
|
23
|
-
|
|
24
|
-
/**
|
|
25
|
-
* The Israeli trust row — four thin-stroke promises under the grid.
|
|
26
|
-
* (משלוח מהיר · אחריות · תשלום מאובטח · אריזת מתנה)
|
|
27
|
-
*/
|
|
28
|
-
export function TrustIcons() {
|
|
29
|
-
const t = useTranslations('home');
|
|
30
|
-
const items: Array<{ icon: keyof typeof ICONS; label: string }> = [
|
|
31
|
-
{ icon: 'truck', label: t('trustShipping') },
|
|
32
|
-
{ icon: 'shield', label: t('trustWarranty') },
|
|
33
|
-
{ icon: 'lock', label: t('trustSecure') },
|
|
34
|
-
{ icon: 'gift', label: t('trustGift') },
|
|
35
|
-
];
|
|
36
|
-
|
|
37
|
-
return (
|
|
38
|
-
<div className="border-border grid grid-cols-2 gap-x-4 gap-y-8 border-y py-10 md:grid-cols-4">
|
|
39
|
-
{items.map((item) => (
|
|
40
|
-
<div key={item.icon} className="flex flex-col items-center gap-3 text-center">
|
|
41
|
-
<svg
|
|
42
|
-
viewBox="0 0 24 24"
|
|
43
|
-
fill="none"
|
|
44
|
-
stroke="currentColor"
|
|
45
|
-
strokeWidth={1.2}
|
|
46
|
-
strokeLinecap="round"
|
|
47
|
-
strokeLinejoin="round"
|
|
48
|
-
className="text-accent h-7 w-7"
|
|
49
|
-
aria-hidden="true"
|
|
50
|
-
>
|
|
51
|
-
{ICONS[item.icon]}
|
|
52
|
-
</svg>
|
|
53
|
-
<span className="text-muted-foreground text-[0.6875rem] tracking-[0.08em]">
|
|
54
|
-
{item.label}
|
|
55
|
-
</span>
|
|
56
|
-
</div>
|
|
57
|
-
))}
|
|
58
|
-
</div>
|
|
59
|
-
);
|
|
60
|
-
}
|