feat(ecommerce): migrate Ari Shopping to Next.js 15 headless storefront v4
Build and Push Frontend / build (push) Failing after 5m39s

This commit is contained in:
2026-07-19 19:37:41 -05:00
parent 383b644929
commit f263a9cc55
76 changed files with 1607 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
@import "tailwindcss";
@theme {
--color-ari-cyan: #22d3ee;
--color-ari-magenta: #ec4899;
--color-ari-yellow: #fde047;
--color-ari-blue: #0e7490;
--animate-accordion-down: accordion-down .2s ease-out;
--animate-accordion-up: accordion-up .2s ease-out;
}
@keyframes accordion-down { from { height: 0; } to { height: var(--radix-accordion-content-height); } }
@keyframes accordion-up { from { height: var(--radix-accordion-content-height); } to { height: 0; } }
:root { color-scheme: light; }
* { border-color: rgb(226 232 240); }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: #0f172a; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: #fde047; color: #0f172a; }