Compare commits

...

14 Commits

Author SHA1 Message Date
Rami Bitar
3cc7ec376c update product details 2026-06-03 13:41:04 -04:00
Rami Bitar
4aa55c2b89 Bump version 0.0.19 2026-05-11 23:42:58 -04:00
Rami Bitar
661eb99e94 Log PUBLISH payload and post full route object
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-11 23:32:54 -04:00
Rami Bitar
6b6be4f50c Log PUBLISH payload in handlePublish
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-11 23:31:23 -04:00
Rami Bitar
0b135b8a32 Post publish message before delay in handlePublish
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-11 23:13:02 -04:00
Rami Bitar
60e262465e update package json 2026-05-11 21:46:30 -04:00
Rami Bitar
18d03f0a7a Fix font cascade for wrapped/nested heading elements
The body-font rule explicitly targeted span/a/p/li, which broke any
heading rendered as <span> (e.g. Typography variant="h3" as="span") or
any heading containing inline span/anchor children — those elements
matched the rule and reset their font to the body font, overriding
inheritance from the parent heading.

Set the body font once on `body` and let descendants inherit. Form
controls (button/input/textarea/select) get `font-family: inherit` so
they pick up the surrounding context instead of the UA default.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-10 17:10:12 -04:00
Rami Bitar
3636724450 Remove Tailwind CDN script from index.html
Vite already compiles Tailwind via globals.css, so the runtime CDN
script duplicated styles and slowed first paint.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-10 17:04:51 -04:00
Rami Bitar
1c034400ca Rebrand store as Pulse with athletic theme and shared typography
- Pulse theme tokens in app.schema.json: Archivo Black headings (weight 400)
  + Inter body, white bg / black pill buttons, xl radius, AI-generated
  athletic imagery
- Add headerFontWeight theme prop so single-weight fonts (Archivo Black)
  load and render correctly; ThemeProvider applies font-family + weight
  inline so Typography works regardless of `as` element
- New shared Heading component (tagline / title / subtitle with size +
  align + tone variants) and Typography caption variant for taglines;
  refactor features, faq, cta, testimonials, products-carousel,
  products-grid, collection-grid, recommended-products, image-gallery,
  newsletter-cta to use them
- Hero accepts a `buttons` array (label / href / variant) replacing
  primaryCta/secondaryCta; cover-image component removed and existing
  cover blocks migrated to Hero blocks with `buttons: []`
- Newsletter CTA uses shadcn Button + Input so it inherits theme radius;
  stacked layout fixed to keep the image
- Product/collection card titles use Typography subtitle variants
  (font-body), heading font weight is theme-controlled
- Remove orphan commerce/shop-header.tsx and commerce/shop-footer.tsx;
  the editor-driven navigation/footer are the live chrome

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-10 16:47:07 -04:00
Rami Bitar
0a1fbd62bb Update default styles and components 2026-05-10 15:49:28 -04:00
Rami Bitar
383a593c42 Add Container component and fix radius/maxWidth theming
- Drop buttonRadius prop; button now uses --radius via rounded-md
- Inject @theme radius mappings into ThemeProvider so rounded-* utilities
  pick up --radius inside the Tailwind CDN iframe
- Add shared Container that consumes --container-max-width set from the
  global maxWidth prop, replacing ad-hoc "container mx-auto max-w-7xl px-6"
  wrappers across commerce, landing, footer, navigation, and others
- Simplify maxWidth options to Small/Medium/Large/X-Large/Full bleed and
  shift the scale up so Large (1280px) matches the previous default

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-10 12:25:13 -04:00
Rami Bitar
3a3d0a6ac8 update options 2026-05-09 15:36:10 -04:00
Rami Bitar
572de32e1a Merge staging: filter sheet drawers 2026-05-09 15:23:12 -04:00
Rami Bitar
906f2934fb Move collection and search filters into a Sheet drawer
Replace the always-visible sidebar and inline mobile filter panel with a
single Filters button that opens a left-side Sheet, with Clear (outline)
and Search (default) actions in the footer for consistency across pages.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-09 15:20:50 -04:00
67 changed files with 3146 additions and 2274 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,44 @@
"use client";
import { useMemo } from "react";
import { Editor } from "@reacteditor/core";
import createTailwindCdnPlugin from "@reacteditor/plugin-tailwind-cdn";
import type { UserConfig } from "@/config/types";
export type EditorShellProps = {
config: UserConfig;
data: any;
routeKey?: string;
};
export function EditorShell({ config, data, routeKey }: EditorShellProps) {
const plugins = useMemo(() => [createTailwindCdnPlugin()], []);
const handlePublish = async (nextData: any, route?: any) => {
const resolved = route ?? (routeKey ? { key: routeKey } : undefined);
console.log({
type: "PUBLISH",
data: { data: nextData, route: JSON.stringify(resolved) },
});
if (typeof window !== "undefined" && window.parent !== window) {
window.parent.postMessage(
{ type: "PUBLISH", data: { data: nextData, route: resolved } },
"*",
);
}
await new Promise((resolve) => setTimeout(resolve, 1000));
};
return (
<div className="h-screen w-screen">
<Editor
config={config as any}
data={data}
plugins={plugins}
iframe={{ enabled: true }}
ui={{ leftSideBarVisible: false }}
onPublish={handlePublish}
/>
</div>
);
}

View File

@@ -0,0 +1,10 @@
"use client";
import { Render } from "@reacteditor/core";
import { collectionsConfig } from "@/config/configs";
import schema from "@/app.schema.json";
export default function CollectionPage() {
const data = (schema as any)["/collections/:handle"];
return <Render config={collectionsConfig as any} data={data} />;
}

View File

@@ -0,0 +1,16 @@
"use client";
import { EditorShell } from "@/app/_components/editor-shell";
import { collectionsConfig } from "@/config/configs";
import schema from "@/app.schema.json";
export default function CollectionEditorPage() {
const data = (schema as any)["/collections/:handle"];
return (
<EditorShell
config={collectionsConfig}
data={data}
routeKey="/collections/:handle"
/>
);
}

10
app/editor/page.tsx Normal file
View File

@@ -0,0 +1,10 @@
"use client";
import { EditorShell } from "@/app/_components/editor-shell";
import { homeConfig } from "@/config/configs";
import schema from "@/app.schema.json";
export default function HomeEditorPage() {
const data = (schema as any)["/"];
return <EditorShell config={homeConfig} data={data} routeKey="/" />;
}

View File

@@ -0,0 +1,16 @@
"use client";
import { EditorShell } from "@/app/_components/editor-shell";
import { productConfig } from "@/config/configs";
import schema from "@/app.schema.json";
export default function ProductEditorPage() {
const data = (schema as any)["/products/:handle"];
return (
<EditorShell
config={productConfig}
data={data}
routeKey="/products/:handle"
/>
);
}

View File

@@ -0,0 +1,10 @@
"use client";
import { EditorShell } from "@/app/_components/editor-shell";
import { searchConfig } from "@/config/configs";
import schema from "@/app.schema.json";
export default function SearchEditorPage() {
const data = (schema as any)["/search"];
return <EditorShell config={searchConfig} data={data} routeKey="/search" />;
}

View File

@@ -32,7 +32,6 @@
--radius-md: calc(var(--radius) * 0.75); --radius-md: calc(var(--radius) * 0.75);
--radius-lg: var(--radius); --radius-lg: var(--radius);
--radius-xl: calc(var(--radius) * 1.5); --radius-xl: calc(var(--radius) * 1.5);
--radius-button: var(--button-radius, var(--radius));
--animate-marquee: marquee var(--duration) infinite linear; --animate-marquee: marquee var(--duration) infinite linear;
--animate-marquee-vertical: marquee-vertical var(--duration) linear infinite; --animate-marquee-vertical: marquee-vertical var(--duration) linear infinite;
@@ -103,9 +102,16 @@
--sidebar-ring: oklch(0.708 0 0); --sidebar-ring: oklch(0.708 0 0);
} }
*,
::after,
::before,
::backdrop,
::file-selector-button {
border-color: var(--border);
}
@layer base { @layer base {
* { border-color: var(--border); * { @apply outline-ring/50; }
@apply border-border outline-ring/50; }
html, body { background-color: var(--background); color: var(--foreground); } html, body { background-color: var(--background); color: var(--foreground); }
body { body {
font-family: var(--font-body), "Apple Color Emoji", "Segoe UI Emoji"; font-family: var(--font-body), "Apple Color Emoji", "Segoe UI Emoji";

20
app/layout.tsx Normal file
View File

@@ -0,0 +1,20 @@
import type { ReactNode } from "react";
import "@reacteditor/core/react-editor.css";
import "@reacteditor/plugin-media/styles.css";
import "@reacteditor/plugin-ai/styles.css";
import "./globals.css";
import { Providers } from "./providers";
export const metadata = {
title: "Shopify Storefront",
};
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en">
<body>
<Providers>{children}</Providers>
</body>
</html>
);
}

10
app/page.tsx Normal file
View File

@@ -0,0 +1,10 @@
"use client";
import { Render } from "@reacteditor/core";
import { homeConfig } from "@/config/configs";
import schema from "@/app.schema.json";
export default function HomePage() {
const data = (schema as any)["/"];
return <Render config={homeConfig as any} data={data} />;
}

View File

@@ -0,0 +1,10 @@
"use client";
import { Render } from "@reacteditor/core";
import { productConfig } from "@/config/configs";
import schema from "@/app.schema.json";
export default function ProductPage() {
const data = (schema as any)["/products/:handle"];
return <Render config={productConfig as any} data={data} />;
}

21
app/providers.tsx Normal file
View File

@@ -0,0 +1,21 @@
"use client";
import { useEffect, useState, type ReactNode } from "react";
import { ShopifyProvider } from "@/contexts/shopify-context";
const SHOPIFY_DOMAIN =
process.env.NEXT_PUBLIC_SHOPIFY_DOMAIN ?? "mock.shop";
const STOREFRONT_TOKEN =
process.env.NEXT_PUBLIC_SHOPIFY_STOREFRONT_ACCESS_TOKEN ?? "";
export function Providers({ children }: { children: ReactNode }) {
const [mounted, setMounted] = useState(false);
useEffect(() => setMounted(true), []);
if (!mounted) return null;
return (
<ShopifyProvider domain={SHOPIFY_DOMAIN} token={STOREFRONT_TOKEN}>
{children}
</ShopifyProvider>
);
}

10
app/search/page.tsx Normal file
View File

@@ -0,0 +1,10 @@
"use client";
import { Render } from "@reacteditor/core";
import { searchConfig } from "@/config/configs";
import schema from "@/app.schema.json";
export default function SearchPage() {
const data = (schema as any)["/search"];
return <Render config={searchConfig as any} data={data} />;
}

View File

@@ -1,11 +1,11 @@
{ {
"$schema": "https://ui.shadcn.com/schema.json", "$schema": "https://ui.shadcn.com/schema.json",
"style": "base-nova", "style": "base-nova",
"rsc": false, "rsc": true,
"tsx": true, "tsx": true,
"tailwind": { "tailwind": {
"config": "", "config": "",
"css": "src/globals.css", "css": "app/globals.css",
"baseColor": "neutral", "baseColor": "neutral",
"cssVariables": true, "cssVariables": true,
"prefix": "" "prefix": ""

117
components/Heading.tsx Normal file
View File

@@ -0,0 +1,117 @@
import * as React from "react";
import { cn } from "@/lib/utils";
import { Typography, type TypographyVariant } from "@/components/Typography";
export type HeadingSize = "sm" | "md" | "lg" | "xl";
export type HeadingAlign = "left" | "center";
export type HeadingTone = "default" | "light";
type SizeMap = {
title: TypographyVariant;
subtitle: TypographyVariant;
taglineGap: string;
subtitleGap: string;
};
const sizeMap: Record<HeadingSize, SizeMap> = {
sm: {
title: "h4",
subtitle: "subtitle2",
taglineGap: "mb-2",
subtitleGap: "mt-2",
},
md: {
title: "h3",
subtitle: "subtitle1",
taglineGap: "mb-3",
subtitleGap: "mt-3",
},
lg: {
title: "h2",
subtitle: "subtitle1",
taglineGap: "mb-3",
subtitleGap: "mt-3",
},
xl: {
title: "h1",
subtitle: "subtitle1",
taglineGap: "mb-4",
subtitleGap: "mt-4",
},
};
const alignClasses: Record<HeadingAlign, string> = {
left: "items-start text-left",
center: "items-center text-center",
};
export type HeadingProps = {
tagline?: React.ReactNode;
title?: React.ReactNode;
subtitle?: React.ReactNode;
size?: HeadingSize;
align?: HeadingAlign;
tone?: HeadingTone;
className?: string;
titleClassName?: string;
subtitleClassName?: string;
taglineClassName?: string;
maxWidth?: string;
};
export function Heading({
tagline,
title,
subtitle,
size = "lg",
align = "left",
tone = "default",
className,
titleClassName,
subtitleClassName,
taglineClassName,
maxWidth,
}: HeadingProps) {
if (!tagline && !title && !subtitle) return null;
const map = sizeMap[size];
const isLight = tone === "light";
return (
<div className={cn("flex flex-col", alignClasses[align], maxWidth, className)}>
{tagline ? (
<Typography
variant="caption"
className={cn(
map.taglineGap,
isLight && "text-background/70",
taglineClassName,
)}
>
{tagline}
</Typography>
) : null}
{title ? (
<Typography
variant={map.title}
className={cn(isLight && "text-background", titleClassName)}
>
{title}
</Typography>
) : null}
{subtitle ? (
<Typography
variant={map.subtitle}
className={cn(
map.subtitleGap,
isLight && "text-background/70",
subtitleClassName,
)}
>
{subtitle}
</Typography>
) : null}
</div>
);
}
export default Heading;

View File

@@ -3,6 +3,7 @@ import { useEffect, useMemo, useRef } from "react";
export type ThemeProps = { export type ThemeProps = {
headerFont?: string; headerFont?: string;
headerFontWeight?: string;
bodyFont?: string; bodyFont?: string;
primaryColor?: string; primaryColor?: string;
primaryForegroundColor?: string; primaryForegroundColor?: string;
@@ -14,9 +15,8 @@ export type ThemeProps = {
mutedForegroundColor?: string; mutedForegroundColor?: string;
borderColor?: string; borderColor?: string;
radius?: "none" | "sm" | "md" | "lg" | "xl"; radius?: "none" | "sm" | "md" | "lg" | "xl";
buttonRadius?: "none" | "sm" | "md" | "lg" | "xl";
shadow?: "none" | "sm" | "md" | "lg" | "xl"; shadow?: "none" | "sm" | "md" | "lg" | "xl";
maxWidth?: "sm" | "md" | "lg" | "xl" | "2xl" | "full"; maxWidth?: "sm" | "md" | "lg" | "xl" | "full";
}; };
const radiusMap: Record<NonNullable<ThemeProps["radius"]>, string> = { const radiusMap: Record<NonNullable<ThemeProps["radius"]>, string> = {
@@ -27,12 +27,12 @@ const radiusMap: Record<NonNullable<ThemeProps["radius"]>, string> = {
xl: "1rem", xl: "1rem",
}; };
const buttonRadiusMap: Record<NonNullable<ThemeProps["buttonRadius"]>, string> = { const maxWidthMap: Record<NonNullable<ThemeProps["maxWidth"]>, string> = {
none: "0px", sm: "64rem",
sm: "0.25rem", md: "72rem",
md: "0.5rem", lg: "80rem",
lg: "0.75rem", xl: "96rem",
xl: "1rem", full: "100%",
}; };
const shadowMap: Record<NonNullable<ThemeProps["shadow"]>, string> = { const shadowMap: Record<NonNullable<ThemeProps["shadow"]>, string> = {
@@ -43,19 +43,40 @@ const shadowMap: Record<NonNullable<ThemeProps["shadow"]>, string> = {
xl: "0 20px 25px -5px rgb(0 0 0 / 0.10), 0 8px 10px -6px rgb(0 0 0 / 0.10)", xl: "0 20px 25px -5px rgb(0 0 0 / 0.10), 0 8px 10px -6px rgb(0 0 0 / 0.10)",
}; };
function googleFontsHref(headerFont?: string, bodyFont?: string): string | null { function googleFontsHref(
const fonts = [headerFont, bodyFont].filter( headerFont?: string,
(f): f is string => !!f && f !== "system-ui" bodyFont?: string,
headerFontWeight?: string,
): string | null {
const valid = (f?: string): f is string => !!f && f !== "system-ui";
const families: string[] = [];
const seen = new Set<string>();
const headerWeight = headerFontWeight || "400";
const bodyWeights = "400;500;600;700";
if (valid(headerFont)) {
seen.add(headerFont);
// Header font uses the configured weight only — avoids HTTP 400 from
// Google Fonts when a single-weight family (e.g. Archivo Black) is paired
// with a multi-weight default request.
families.push(
`family=${encodeURIComponent(headerFont)}:wght@${headerWeight}`,
); );
if (fonts.length === 0) return null; }
const families = Array.from(new Set(fonts)) if (valid(bodyFont) && !seen.has(bodyFont)) {
.map((f) => `family=${encodeURIComponent(f)}:wght@400;500;600;700`) seen.add(bodyFont);
.join("&"); families.push(
return `https://fonts.googleapis.com/css2?${families}&display=swap`; `family=${encodeURIComponent(bodyFont)}:wght@${bodyWeights}`,
);
}
if (families.length === 0) return null;
return `https://fonts.googleapis.com/css2?${families.join("&")}&display=swap`;
} }
export function ThemeProvider({ export function ThemeProvider({
headerFont, headerFont,
headerFontWeight,
bodyFont, bodyFont,
primaryColor, primaryColor,
primaryForegroundColor, primaryForegroundColor,
@@ -67,8 +88,8 @@ export function ThemeProvider({
mutedForegroundColor, mutedForegroundColor,
borderColor, borderColor,
radius, radius,
buttonRadius,
shadow, shadow,
maxWidth,
children, children,
}: ThemeProps & { children?: React.ReactNode }) { }: ThemeProps & { children?: React.ReactNode }) {
// Recompute CSS-variable map only when a relevant prop changes. // Recompute CSS-variable map only when a relevant prop changes.
@@ -84,13 +105,15 @@ export function ThemeProvider({
if (mutedForegroundColor) vars["--muted-foreground"] = mutedForegroundColor; if (mutedForegroundColor) vars["--muted-foreground"] = mutedForegroundColor;
if (borderColor) vars["--border"] = borderColor; if (borderColor) vars["--border"] = borderColor;
if (radius) vars["--radius"] = radiusMap[radius]; if (radius) vars["--radius"] = radiusMap[radius];
if (buttonRadius) vars["--button-radius"] = buttonRadiusMap[buttonRadius];
if (shadow) vars["--shadow"] = shadowMap[shadow]; if (shadow) vars["--shadow"] = shadowMap[shadow];
if (maxWidth) vars["--container-max-width"] = maxWidthMap[maxWidth];
if (headerFont) vars["--font-header"] = `"${headerFont}", system-ui, sans-serif`; if (headerFont) vars["--font-header"] = `"${headerFont}", system-ui, sans-serif`;
if (bodyFont) vars["--font-body"] = `"${bodyFont}", system-ui, sans-serif`; if (bodyFont) vars["--font-body"] = `"${bodyFont}", system-ui, sans-serif`;
if (headerFontWeight) vars["--font-weight-header"] = headerFontWeight;
return vars; return vars;
}, [ }, [
headerFont, headerFont,
headerFontWeight,
bodyFont, bodyFont,
primaryColor, primaryColor,
primaryForegroundColor, primaryForegroundColor,
@@ -102,8 +125,8 @@ export function ThemeProvider({
mutedForegroundColor, mutedForegroundColor,
borderColor, borderColor,
radius, radius,
buttonRadius,
shadow, shadow,
maxWidth,
]); ]);
// Imperatively push every CSS var onto :root inside the host document // Imperatively push every CSS var onto :root inside the host document
@@ -133,20 +156,28 @@ export function ThemeProvider({
}, [cssVars]); }, [cssVars]);
const fontsHref = useMemo( const fontsHref = useMemo(
() => googleFontsHref(headerFont, bodyFont), () => googleFontsHref(headerFont, bodyFont, headerFontWeight),
[headerFont, bodyFont], [headerFont, bodyFont, headerFontWeight],
); );
// Plain CSS rules — applied directly, no Tailwind CDN runtime needed. // Plain CSS rules — applied directly, no Tailwind CDN runtime needed.
// Tailwind preflight resets h1..h6 to font-family: inherit, which would // Body font is set on `body` once and inherited by descendants (span, a,
// make headings pick up the body font. We override that here using the // p, li, etc. don't need explicit rules — applying one to `span/a` would
// `--font-header` CSS var ThemeProvider sets per-page. // break heading children, anchors inside headings, and any element using
// `as="span"` to render a heading variant).
// Form controls have user-agent defaults, so they need an explicit override.
// Tailwind preflight resets h1..h6 to font-family: inherit, so we restore
// the heading font + weight here using the per-page CSS vars.
const css = ` const css = `
body, p, span, a, li, button, input, textarea, select { body {
font-family: var(--font-body), system-ui, -apple-system, sans-serif; font-family: var(--font-body), system-ui, -apple-system, sans-serif;
} }
button, input, textarea, select {
font-family: inherit;
}
h1, h2, h3, h4, h5, h6 { h1, h2, h3, h4, h5, h6 {
font-family: var(--font-header), system-ui, -apple-system, sans-serif; font-family: var(--font-header), system-ui, -apple-system, sans-serif;
font-weight: var(--font-weight-header, 600);
} }
`; `;
@@ -157,6 +188,12 @@ export function ThemeProvider({
@theme { @theme {
--font-family-heading: var(--font-header), system-ui, -apple-system, sans-serif; --font-family-heading: var(--font-header), system-ui, -apple-system, sans-serif;
--font-family-body: var(--font-body), system-ui, -apple-system, sans-serif; --font-family-body: var(--font-body), system-ui, -apple-system, sans-serif;
--radius-sm: calc(var(--radius) * 0.5);
--radius-md: calc(var(--radius) * 0.75);
--radius-lg: var(--radius);
--radius-xl: calc(var(--radius) * 1.5);
--radius-2xl: calc(var(--radius) * 2);
--radius-3xl: calc(var(--radius) * 3);
} }
`; `;

View File

@@ -15,17 +15,17 @@ export type TypographyVariant =
| "caption"; | "caption";
const sizeClasses: Record<TypographyVariant, string> = { const sizeClasses: Record<TypographyVariant, string> = {
h1: "text-5xl md:text-6xl lg:text-7xl font-semibold tracking-tight leading-[1.05]", h1: "text-5xl md:text-6xl lg:text-7xl tracking-tight leading-[1.05]",
h2: "text-4xl md:text-5xl font-semibold tracking-tight leading-[1.1]", h2: "text-4xl md:text-5xl tracking-tight leading-[1.1]",
h3: "text-3xl md:text-4xl font-semibold tracking-tight leading-tight", h3: "text-3xl md:text-4xl tracking-tight leading-tight",
h4: "text-2xl md:text-3xl font-semibold tracking-tight leading-snug", h4: "text-2xl md:text-3xl tracking-tight leading-snug",
h5: "text-xl md:text-2xl font-semibold leading-snug", h5: "text-xl md:text-2xl leading-snug",
h6: "text-lg md:text-xl font-semibold leading-snug", h6: "text-lg md:text-xl leading-snug",
subtitle1: "text-lg md:text-xl leading-relaxed text-muted-foreground", subtitle1: "text-lg md:text-xl leading-relaxed text-muted-foreground",
subtitle2: "text-base md:text-lg leading-relaxed text-muted-foreground", subtitle2: "text-base md:text-lg leading-relaxed text-muted-foreground",
body1: "text-lg leading-relaxed", body1: "text-lg leading-relaxed",
body2: "text-base leading-relaxed", body2: "text-base leading-relaxed",
caption: "text-sm leading-relaxed text-muted-foreground", caption: "text-xs font-bold uppercase tracking-[0.2em] text-muted-foreground",
}; };
// Inline-style fallbacks so headings size correctly even when Tailwind // Inline-style fallbacks so headings size correctly even when Tailwind
@@ -33,17 +33,17 @@ const sizeClasses: Record<TypographyVariant, string> = {
// hasn't compiled utility classes yet. The Tailwind classes above still // hasn't compiled utility classes yet. The Tailwind classes above still
// apply on top once available (responsive breakpoints, leading, etc.). // apply on top once available (responsive breakpoints, leading, etc.).
const sizeStyles: Record<TypographyVariant, React.CSSProperties> = { const sizeStyles: Record<TypographyVariant, React.CSSProperties> = {
h1: { fontSize: "clamp(2.5rem, 6vw, 4.5rem)", lineHeight: 1.05, fontWeight: 600, letterSpacing: "-0.02em" }, h1: { fontSize: "clamp(2.5rem, 6vw, 4.5rem)", lineHeight: 1.05, letterSpacing: "-0.02em" },
h2: { fontSize: "clamp(2rem, 4vw, 3rem)", lineHeight: 1.1, fontWeight: 600, letterSpacing: "-0.02em" }, h2: { fontSize: "clamp(2rem, 4vw, 3rem)", lineHeight: 1.1, letterSpacing: "-0.02em" },
h3: { fontSize: "clamp(1.75rem, 3.5vw, 2.25rem)", lineHeight: 1.15, fontWeight: 600, letterSpacing: "-0.015em" }, h3: { fontSize: "clamp(1.75rem, 3.5vw, 2.25rem)", lineHeight: 1.15, letterSpacing: "-0.015em" },
h4: { fontSize: "clamp(1.5rem, 3vw, 1.875rem)", lineHeight: 1.2, fontWeight: 600, letterSpacing: "-0.01em" }, h4: { fontSize: "clamp(1.5rem, 3vw, 1.875rem)", lineHeight: 1.2, letterSpacing: "-0.01em" },
h5: { fontSize: "1.5rem", lineHeight: 1.25, fontWeight: 600 }, h5: { fontSize: "1.5rem", lineHeight: 1.25 },
h6: { fontSize: "1.25rem", lineHeight: 1.3, fontWeight: 600 }, h6: { fontSize: "1.25rem", lineHeight: 1.3 },
subtitle1: { fontSize: "1.125rem", lineHeight: 1.6 }, subtitle1: { fontSize: "1.125rem", lineHeight: 1.6 },
subtitle2: { fontSize: "1rem", lineHeight: 1.6 }, subtitle2: { fontSize: "1rem", lineHeight: 1.6 },
body1: { fontSize: "1.125rem", lineHeight: 1.6 }, body1: { fontSize: "1.125rem", lineHeight: 1.6 },
body2: { fontSize: "1rem", lineHeight: 1.6 }, body2: { fontSize: "1rem", lineHeight: 1.6 },
caption: { fontSize: "0.875rem", lineHeight: 1.5 }, caption: { fontSize: "0.75rem", lineHeight: 1.5, fontWeight: 700, letterSpacing: "0.2em", textTransform: "uppercase" },
}; };
const defaultTag: Record<TypographyVariant, keyof JSX.IntrinsicElements> = { const defaultTag: Record<TypographyVariant, keyof JSX.IntrinsicElements> = {
@@ -80,11 +80,22 @@ export function Typography<C extends keyof JSX.IntrinsicElements = "p">({
const isHeading = variant.startsWith("h"); const isHeading = variant.startsWith("h");
const fontClass = isHeading ? "font-heading" : "font-body"; const fontClass = isHeading ? "font-heading" : "font-body";
// Apply the heading font + weight inline so the styling holds even when
// the rendered element isn't h1h6 (e.g. <span> via the `as` prop). The
// ThemeProvider's element-scoped CSS rule only matches real h-tags, and
// the `font-heading` Tailwind utility can't be relied on in CDN mode.
const fontStyles: React.CSSProperties = isHeading
? {
fontFamily: "var(--font-header), system-ui, sans-serif",
fontWeight: "var(--font-weight-header, 600)",
}
: {};
return React.createElement( return React.createElement(
Tag, Tag,
{ {
className: cn(fontClass, sizeClasses[variant], className), className: cn(fontClass, sizeClasses[variant], className),
style: { ...sizeStyles[variant], ...style }, style: { ...fontStyles, ...sizeStyles[variant], ...style },
...rest, ...rest,
}, },
children, children,

View File

@@ -98,10 +98,10 @@ const CartDrawer: React.FC = () => {
return ( return (
<div <div
key={item.id} key={item.id}
className="flex items-start space-x-4 pb-6 border-b border-gray-200 last:border-b-0" className="flex items-start space-x-4 pb-6 border-b border-border last:border-b-0"
> >
{/* Product Image */} {/* Product Image */}
<div className="w-20 h-20 bg-gray-100 rounded-lg overflow-hidden flex-shrink-0"> <div className="w-20 h-20 bg-muted rounded-lg overflow-hidden flex-shrink-0">
{image ? ( {image ? (
<img <img
src={image} src={image}
@@ -109,7 +109,7 @@ const CartDrawer: React.FC = () => {
className="w-full h-full object-cover" className="w-full h-full object-cover"
/> />
) : ( ) : (
<div className="w-full h-full flex items-center justify-center text-gray-400"> <div className="w-full h-full flex items-center justify-center text-muted-foreground">
<ImageIcon size={24} /> <ImageIcon size={24} />
</div> </div>
)} )}
@@ -117,13 +117,13 @@ const CartDrawer: React.FC = () => {
{/* Product Details */} {/* Product Details */}
<div className="flex-1 min-w-0"> <div className="flex-1 min-w-0">
<h4 className="font-semibold text-gray-900 mb-1 line-clamp-2"> <h4 className="font-semibold text-foreground mb-1 line-clamp-2">
{item.merchandise.product.title} {item.merchandise.product.title}
</h4> </h4>
{/* Variant Info */} {/* Variant Info */}
{selectedOptions.length > 0 && ( {selectedOptions.length > 0 && (
<div className="text-sm text-gray-500 mb-2"> <div className="text-sm text-muted-foreground mb-2">
{selectedOptions.map((option, index) => ( {selectedOptions.map((option, index) => (
<span key={option.name}> <span key={option.name}>
{option.value} {option.value}
@@ -137,7 +137,7 @@ const CartDrawer: React.FC = () => {
{/* Quantity Controls */} {/* Quantity Controls */}
<div className="flex items-center mt-3"> <div className="flex items-center mt-3">
<div className="flex items-center border border-gray-300 rounded-lg"> <div className="flex items-center border border-border rounded-lg">
<Button <Button
onClick={() => onClick={() =>
updateItemQuantity(item.id, item.quantity - 1) updateItemQuantity(item.id, item.quantity - 1)
@@ -169,7 +169,7 @@ const CartDrawer: React.FC = () => {
{/* Price */} {/* Price */}
<div className="flex-shrink-0"> <div className="flex-shrink-0">
<span className="text-sm font-semibold text-gray-900"> <span className="text-sm font-semibold text-foreground">
${parseFloat(item.merchandise.price.amount).toFixed(2)} ${parseFloat(item.merchandise.price.amount).toFixed(2)}
</span> </span>
</div> </div>
@@ -181,7 +181,7 @@ const CartDrawer: React.FC = () => {
variant="ghost" variant="ghost"
size="icon-sm" size="icon-sm"
disabled={loading} disabled={loading}
className="text-gray-400 hover:text-gray-700" className="text-muted-foreground hover:text-foreground"
> >
<X size={18} /> <X size={18} />
</Button> </Button>
@@ -204,7 +204,7 @@ const CartDrawer: React.FC = () => {
</span> </span>
</div> </div>
<div className="text-sm text-gray-500 mb-4"> <div className="text-sm text-muted-foreground mb-4">
Shipping and taxes calculated at checkout Shipping and taxes calculated at checkout
</div> </div>

View File

@@ -1,6 +1,7 @@
import React from 'react'; import React from 'react';
import { Link } from 'react-router'; import Link from 'next/link';
import { Card, CardContent } from '@/components/ui/card'; import { Card, CardContent } from '@/components/ui/card';
import { Typography } from '@/components/Typography';
interface CollectionImage { interface CollectionImage {
url: string; url: string;
@@ -21,10 +22,10 @@ interface CollectionCardProps {
const CollectionCard: React.FC<CollectionCardProps> = ({ collection }) => { const CollectionCard: React.FC<CollectionCardProps> = ({ collection }) => {
return ( return (
<Link to={`/collections/${collection.handle}`} className="block group"> <Link href={`/collections/${collection.handle}`} className="block group">
<Card className="hover:shadow-xl transition-shadow duration-300 overflow-hidden py-0 gap-0"> <Card className="hover:shadow-xl transition-shadow duration-300 overflow-hidden py-0 gap-0">
{/* Collection Image */} {/* Collection Image */}
<div className="aspect-video overflow-hidden bg-gray-100"> <div className="aspect-video overflow-hidden bg-muted">
{collection.image ? ( {collection.image ? (
<img <img
src={collection.image.url} src={collection.image.url}
@@ -32,7 +33,7 @@ const CollectionCard: React.FC<CollectionCardProps> = ({ collection }) => {
className="w-full h-full object-cover group-hover:scale-105 transition-transform duration-300" className="w-full h-full object-cover group-hover:scale-105 transition-transform duration-300"
/> />
) : ( ) : (
<div className="w-full h-full flex items-center justify-center text-gray-400"> <div className="w-full h-full flex items-center justify-center text-muted-foreground">
<i className="ri-folder-line text-6xl"></i> <i className="ri-folder-line text-6xl"></i>
</div> </div>
)} )}
@@ -40,18 +41,21 @@ const CollectionCard: React.FC<CollectionCardProps> = ({ collection }) => {
{/* Collection Info */} {/* Collection Info */}
<CardContent className="p-6"> <CardContent className="p-6">
<h3 className="text-2xl font-bold text-gray-900 mb-3 group-hover:text-gray-600 transition-colors font-heading"> <Typography
variant="subtitle1"
className="mb-3 font-semibold tracking-tight text-foreground transition-colors group-hover:text-muted-foreground"
>
{collection.title} {collection.title}
</h3> </Typography>
{collection.description && ( {collection.description && (
<p className="text-gray-600"> <p className="text-muted-foreground">
{collection.description.substring(0, 100)} {collection.description.substring(0, 100)}
{collection.description.length > 100 ? '...' : ''} {collection.description.length > 100 ? '...' : ''}
</p> </p>
)} )}
<div className="mt-4 text-black font-semibold group-hover:text-gray-600 transition-colors flex items-center"> <div className="mt-4 text-foreground font-semibold group-hover:text-muted-foreground transition-colors flex items-center">
<span>View Collection</span> <span>View Collection</span>
<i className="ri-arrow-right-s-line ml-2"></i> <i className="ri-arrow-right-s-line ml-2"></i>
</div> </div>

View File

@@ -64,18 +64,18 @@ const CollectionDetail: React.FC<{ handle?: string }> = ({ handle: handleProp })
return ( return (
<div className="pt-4 pb-16"> <div className="pt-4 pb-16">
<div className="container mx-auto px-4"> <div className="container mx-auto px-4">
<h2 className="text-5xl font-bold text-center mb-16 text-gray-900 font-heading"> <h2 className="text-5xl font-bold text-center mb-16 text-foreground font-heading">
{title} {title}
</h2> </h2>
{products.length === 0 ? ( {products.length === 0 ? (
<div className="text-center py-12"> <div className="text-center py-12">
<div className="bg-gray-50 border border-gray-200 rounded-lg p-8 max-w-md mx-auto"> <div className="bg-muted border border-border rounded-lg p-8 max-w-md mx-auto">
<i className="ri-shopping-bag-line text-4xl text-gray-400 mb-4"></i> <i className="ri-shopping-bag-line text-4xl text-muted-foreground mb-4"></i>
<h3 className="text-lg font-semibold text-gray-600 mb-2"> <h3 className="text-lg font-semibold text-foreground mb-2">
No Products in Collection No Products in Collection
</h3> </h3>
<p className="text-gray-500"> <p className="text-muted-foreground">
This collection doesn&apos;t have any products yet. This collection doesn&apos;t have any products yet.
</p> </p>
</div> </div>

View File

@@ -1,8 +1,10 @@
import { useEffect, useState } from "react"; import { useEffect, useState } from "react";
import { Link } from "react-router"; import Link from "next/link";
import { shopifyFetch } from "@/services/shopify/client"; import { shopifyFetch } from "@/services/shopify/client";
import { GET_COLLECTIONS_QUERY } from "@/graphql/collections"; import { GET_COLLECTIONS_QUERY } from "@/graphql/collections";
import { Container } from "@/components/layout/Container";
import { Typography } from "@/components/Typography"; import { Typography } from "@/components/Typography";
import { Heading } from "@/components/Heading";
export type CollectionGridProps = { export type CollectionGridProps = {
tagline: string; tagline: string;
@@ -45,20 +47,16 @@ export function CollectionGrid({
return ( return (
<section className="bg-background py-20 md:py-28"> <section className="bg-background py-20 md:py-28">
<div className="container mx-auto max-w-7xl px-6"> <Container>
<div className="mx-auto mb-12 max-w-2xl text-center"> <Heading
{tagline ? ( tagline={tagline}
<p className="mb-3 text-xs uppercase tracking-[0.2em] text-muted-foreground"> title={heading}
{tagline} subtitle={subheading}
</p> align="center"
) : null} size="lg"
<Typography variant="h2">{heading}</Typography> className="mx-auto mb-12"
{subheading ? ( maxWidth="max-w-2xl"
<Typography variant="subtitle1" className="mt-3"> />
{subheading}
</Typography>
) : null}
</div>
<div <div
className={ className={
@@ -73,7 +71,7 @@ export function CollectionGrid({
).map((c: CollectionRow) => ( ).map((c: CollectionRow) => (
<Link <Link
key={c.id} key={c.id}
to={c.handle ? `/collections/${c.handle}` : "#"} href={c.handle ? `/collections/${c.handle}` : "#"}
className="group block" className="group block"
> >
<div <div
@@ -89,28 +87,33 @@ export function CollectionGrid({
{isEditorial ? ( {isEditorial ? (
<div className="absolute inset-0 flex items-end bg-gradient-to-t from-black/60 via-transparent to-transparent p-8"> <div className="absolute inset-0 flex items-end bg-gradient-to-t from-black/60 via-transparent to-transparent p-8">
<div> <div>
<Typography variant="h4" className="text-white"> <Typography
variant="subtitle1"
className="font-semibold tracking-tight text-white"
>
{c.title} {c.title}
</Typography> </Typography>
<span className="mt-2 inline-flex text-xs uppercase tracking-[0.2em] text-white/80"> <span className="mt-2 inline-flex text-xs uppercase tracking-[0.2em] text-white/80">
Shop now Shop now
</span> </span>
</div> </div>
</div> </div>
) : null} ) : null}
</div> </div>
{!isEditorial ? ( {!isEditorial ? (
<div className="mt-4 flex items-center justify-between"> <div className="mt-4">
<h3 className="text-sm font-medium tracking-tight">{c.title}</h3> <Typography
<span className="text-xs text-muted-foreground transition-opacity group-hover:opacity-100"> variant="subtitle2"
className="font-medium tracking-tight text-foreground"
</span> >
{c.title}
</Typography>
</div> </div>
) : null} ) : null}
</Link> </Link>
))} ))}
</div> </div>
</div> </Container>
</section> </section>
); );
} }

View File

@@ -1,6 +1,6 @@
import { useState, useCallback } from 'react'; import { useState, useCallback } from 'react';
import { useParams } from 'react-router'; import { useParams } from 'next/navigation';
import { ChevronDown, SlidersHorizontal, X } from 'lucide-react'; import { ChevronDown, SlidersHorizontal } from 'lucide-react';
import type { ShopifyCollection } from '@reacteditor/field-shopify'; import type { ShopifyCollection } from '@reacteditor/field-shopify';
import { import {
useCollectionProducts, useCollectionProducts,
@@ -11,6 +11,9 @@ import { ProductCard } from './product-card';
import { Typography } from '@/components/Typography'; import { Typography } from '@/components/Typography';
import { Skeleton } from '@/components/ui/skeleton'; import { Skeleton } from '@/components/ui/skeleton';
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from '@/components/ui/select'; import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from '@/components/ui/select';
import { Sheet, SheetContent, SheetHeader, SheetTitle, SheetTrigger, SheetFooter } from '@/components/ui/sheet';
import { Button } from '@/components/ui/button';
import { Container } from '@/components/layout/Container';
import { cn } from '@/lib/utils'; import { cn } from '@/lib/utils';
type FilterOption = { label: string }; type FilterOption = { label: string };
@@ -151,48 +154,8 @@ function Sidebar({
onChange({ [key]: arr.includes(value) ? arr.filter((v) => v !== value) : [...arr, value] }); onChange({ [key]: arr.includes(value) ? arr.filter((v) => v !== value) : [...arr, value] });
} }
const hasActiveFilters =
active.availability ||
active.productTypes.length > 0 ||
active.vendors.length > 0 ||
active.tags.length > 0 ||
active.colors.length > 0 ||
active.styles.length > 0 ||
active.sizes.length > 0 ||
active.materials.length > 0 ||
active.minPrice !== '' ||
active.maxPrice !== '' ||
Object.values(active.metafieldValues).some((arr) => arr.length > 0);
return ( return (
<aside className="w-full shrink-0 md:w-52 lg:w-56"> <div className="w-full">
<div className="flex items-center justify-between border-b border-border pb-4">
<span className="text-xs font-semibold uppercase tracking-[0.15em]">Filters</span>
{hasActiveFilters && (
<button
type="button"
onClick={() =>
onChange({
availability: false,
productTypes: [],
vendors: [],
tags: [],
colors: [],
styles: [],
sizes: [],
materials: [],
minPrice: '',
maxPrice: '',
metafieldValues: {},
})
}
className="flex items-center gap-1 text-xs text-muted-foreground hover:text-foreground"
>
<X size={12} /> Clear all
</button>
)}
</div>
{props.showAvailability === 'yes' && ( {props.showAvailability === 'yes' && (
<FilterGroup label="Availability"> <FilterGroup label="Availability">
<Checkbox <Checkbox
@@ -352,7 +315,7 @@ function Sidebar({
</FilterGroup> </FilterGroup>
); );
})} })}
</aside> </div>
); );
} }
@@ -395,12 +358,14 @@ function buildProductFilters(active: ActiveFilters): ProductFilter[] {
export function CollectionView(props: CollectionProps) { export function CollectionView(props: CollectionProps) {
const { collection: selected, showDescription, showCoverImage, customCoverImage, columns, limit, defaultSort } = props; const { collection: selected, showDescription, showCoverImage, customCoverImage, columns, limit, defaultSort } = props;
const { handle: paramHandle } = useParams<{ handle?: string }>(); const params = useParams();
const paramHandle =
typeof params?.handle === 'string' ? params.handle : undefined;
const handle = selected?.handle ?? paramHandle ?? ''; const handle = selected?.handle ?? paramHandle ?? '';
const [sort, setSort] = useState<CollectionSortKey>(defaultSort); const [sort, setSort] = useState<CollectionSortKey>(defaultSort);
const [reverse, setReverse] = useState(false); const [reverse, setReverse] = useState(false);
const [mobileFiltersOpen, setMobileFiltersOpen] = useState(false); const [filtersOpen, setFiltersOpen] = useState(false);
const [active, setActive] = useState<ActiveFilters>({ const [active, setActive] = useState<ActiveFilters>({
availability: false, availability: false,
productTypes: [], productTypes: [],
@@ -419,6 +384,22 @@ export function CollectionView(props: CollectionProps) {
setActive((prev) => ({ ...prev, ...patch })); setActive((prev) => ({ ...prev, ...patch }));
}, []); }, []);
const clearAll = useCallback(() => {
setActive({
availability: false,
productTypes: [],
vendors: [],
tags: [],
colors: [],
styles: [],
sizes: [],
materials: [],
minPrice: '',
maxPrice: '',
metafieldValues: {},
});
}, []);
const productFilters = buildProductFilters(active); const productFilters = buildProductFilters(active);
const handleSortChange = (value: string) => { const handleSortChange = (value: string) => {
@@ -447,7 +428,7 @@ export function CollectionView(props: CollectionProps) {
if (!selected && !paramHandle) { if (!selected && !paramHandle) {
return ( return (
<section className="bg-background pb-24 pt-12 md:pt-20"> <section className="bg-background pb-24 pt-12 md:pt-20">
<div className="container mx-auto max-w-7xl px-6"> <Container>
<header className="mx-auto mb-14 flex max-w-2xl flex-col items-center gap-3 text-center"> <header className="mx-auto mb-14 flex max-w-2xl flex-col items-center gap-3 text-center">
<Skeleton className="h-3 w-24" /> <Skeleton className="h-3 w-24" />
<Skeleton className="h-10 w-3/4" /> <Skeleton className="h-10 w-3/4" />
@@ -457,14 +438,14 @@ export function CollectionView(props: CollectionProps) {
<Skeleton key={i} className="aspect-[4/5] w-full" /> <Skeleton key={i} className="aspect-[4/5] w-full" />
))} ))}
</div> </div>
</div> </Container>
</section> </section>
); );
} }
return ( return (
<section className="bg-background pb-24 pt-12 md:pt-20"> <section className="bg-background pb-24 pt-12 md:pt-20">
<div className="container mx-auto max-w-7xl px-6"> <Container>
{/* Cover image */} {/* Cover image */}
{showCoverImage === 'yes' && collectionImage && ( {showCoverImage === 'yes' && collectionImage && (
<div className="mb-10 overflow-hidden rounded-lg"> <div className="mb-10 overflow-hidden rounded-lg">
@@ -491,54 +472,42 @@ export function CollectionView(props: CollectionProps) {
) : null} ) : null}
</header> </header>
{/* Mobile filter toggle */} {/* Filter + sort bar */}
<div className="mb-4 flex items-center justify-between md:hidden"> <div className="mb-6 flex items-center justify-between">
<Sheet open={filtersOpen} onOpenChange={setFiltersOpen}>
<SheetTrigger asChild>
<button <button
type="button" type="button"
onClick={() => setMobileFiltersOpen((o) => !o)} className="flex items-center gap-2 rounded-md border border-border px-3 py-2 text-sm font-medium hover:bg-muted"
className="flex items-center gap-2 rounded-md border border-border px-3 py-2 text-sm font-medium"
> >
<SlidersHorizontal size={14} /> <SlidersHorizontal size={14} />
Filters Filters
</button> </button>
<Select value={sortValue} onValueChange={handleSortChange}> </SheetTrigger>
<SelectTrigger className="h-auto px-3 py-2 text-sm"> <SheetContent side="left" className="w-full sm:max-w-md">
<SelectValue> <SheetHeader>
{[...SORT_OPTIONS, { label: 'Price: High to Low', value: 'PRICE_DESC' }].find((o) => o.value === sortValue)?.label} <SheetTitle>Filters</SheetTitle>
</SelectValue> </SheetHeader>
</SelectTrigger> <div className="flex-1 overflow-y-auto px-4">
<SelectContent>
{SORT_OPTIONS.map((o) => (
<SelectItem key={o.value} value={o.value}>{o.label}</SelectItem>
))}
<SelectItem value="PRICE_DESC">Price: High to Low</SelectItem>
</SelectContent>
</Select>
</div>
{/* Mobile filter panel */}
{mobileFiltersOpen && (
<div className="mb-6 rounded-lg border border-border p-4 md:hidden">
<Sidebar props={props} active={active} onChange={patchActive} /> <Sidebar props={props} active={active} onChange={patchActive} />
</div> </div>
)} <SheetFooter className="flex-row gap-2 border-t border-border">
<Button variant="outline" className="flex-1" onClick={clearAll}>
Clear
</Button>
<Button className="flex-1" onClick={() => setFiltersOpen(false)}>
Search
</Button>
</SheetFooter>
</SheetContent>
</Sheet>
<div className="flex gap-10"> <div className="flex items-center gap-4">
{/* Desktop sidebar */} <p className="hidden text-sm text-muted-foreground sm:block">
<div className="hidden md:block">
<Sidebar props={props} active={active} onChange={patchActive} />
</div>
{/* Product area */}
<div className="min-w-0 flex-1">
{/* Sort + count bar */}
<div className="mb-6 flex items-center justify-between">
<p className="text-sm text-muted-foreground">
{loading ? 'Loading…' : `${products.length} product${products.length === 1 ? '' : 's'}`} {loading ? 'Loading…' : `${products.length} product${products.length === 1 ? '' : 's'}`}
</p> </p>
<div className="hidden md:block">
<Select value={sortValue} onValueChange={handleSortChange}> <Select value={sortValue} onValueChange={handleSortChange}>
<SelectTrigger className="h-auto px-3 py-1.5 text-sm"> <SelectTrigger className="h-auto px-3 py-2 text-sm">
<SelectValue> <SelectValue>
{[...SORT_OPTIONS, { label: 'Price: High to Low', value: 'PRICE_DESC' }].find((o) => o.value === sortValue)?.label} {[...SORT_OPTIONS, { label: 'Price: High to Low', value: 'PRICE_DESC' }].find((o) => o.value === sortValue)?.label}
</SelectValue> </SelectValue>
@@ -579,9 +548,7 @@ export function CollectionView(props: CollectionProps) {
</button> </button>
</div> </div>
)} )}
</div> </Container>
</div>
</div>
</section> </section>
); );
} }

View File

@@ -11,19 +11,19 @@ const Collections: React.FC = () => {
return ( return (
<div className="py-16"> <div className="py-16">
<div className="container mx-auto px-4"> <div className="container mx-auto px-4">
<h2 className="text-5xl font-bold text-center mb-16 text-gray-900 font-heading"> <h2 className="text-5xl font-bold text-center mb-16 text-foreground font-heading">
Our Collections Our Collections
</h2> </h2>
{/* Loading Skeleton */} {/* Loading Skeleton */}
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
{Array.from({ length: 6 }).map((_, index) => ( {Array.from({ length: 6 }).map((_, index) => (
<div key={index} className="bg-white rounded-lg shadow-md overflow-hidden animate-pulse"> <div key={index} className="bg-card rounded-lg shadow-md overflow-hidden animate-pulse">
<div className="aspect-video bg-gray-200"></div> <div className="aspect-video bg-muted"></div>
<div className="p-6"> <div className="p-6">
<div className="h-8 bg-gray-200 rounded mb-4"></div> <div className="h-8 bg-muted rounded mb-4"></div>
<div className="h-4 bg-gray-200 rounded mb-2"></div> <div className="h-4 bg-muted rounded mb-2"></div>
<div className="h-4 bg-gray-200 rounded w-3/4"></div> <div className="h-4 bg-muted rounded w-3/4"></div>
</div> </div>
</div> </div>
))} ))}
@@ -62,12 +62,12 @@ const Collections: React.FC = () => {
Our Collections Our Collections
</h2> </h2>
<div className="bg-gray-50 border border-gray-200 rounded-lg p-8 max-w-md mx-auto"> <div className="bg-muted border border-border rounded-lg p-8 max-w-md mx-auto">
<i className="ri-folder-line text-4xl text-gray-400 mb-4"></i> <i className="ri-folder-line text-4xl text-muted-foreground mb-4"></i>
<h3 className="text-lg font-semibold text-gray-600 mb-2"> <h3 className="text-lg font-semibold text-foreground mb-2">
No Collections Found No Collections Found
</h3> </h3>
<p className="text-gray-500"> <p className="text-muted-foreground">
Check back later or configure your Shopify store connection. Check back later or configure your Shopify store connection.
</p> </p>
</div> </div>
@@ -79,7 +79,7 @@ const Collections: React.FC = () => {
return ( return (
<div className="py-16"> <div className="py-16">
<div className="container mx-auto px-4"> <div className="container mx-auto px-4">
<h2 className="text-5xl font-bold text-center mb-16 text-gray-900 font-heading"> <h2 className="text-5xl font-bold text-center mb-16 text-foreground font-heading">
Our Collections Our Collections
</h2> </h2>

View File

@@ -1,9 +1,10 @@
import { Link } from "react-router"; import Link from "next/link";
import type { ShopifyProduct } from "@reacteditor/field-shopify"; import type { ShopifyProduct } from "@reacteditor/field-shopify";
import { useProduct } from "@/hooks/use-shopify-products"; import { useProduct } from "@/hooks/use-shopify-products";
import { useShopifyCart } from "@/hooks/use-shopify-cart"; import { useShopifyCart } from "@/hooks/use-shopify-cart";
import { Typography } from "@/components/Typography"; import { Typography } from "@/components/Typography";
import { Skeleton } from "@/components/ui/skeleton"; import { Skeleton } from "@/components/ui/skeleton";
import { Container } from "@/components/layout/Container";
import { cn } from "@/lib/utils"; import { cn } from "@/lib/utils";
export type FeaturedProductProps = { export type FeaturedProductProps = {
@@ -33,7 +34,7 @@ export function FeaturedProductView({
tone === "muted" ? "bg-muted/40" : "bg-background", tone === "muted" ? "bg-muted/40" : "bg-background",
)} )}
> >
<div className="container mx-auto grid max-w-7xl grid-cols-1 items-center gap-10 px-6 md:grid-cols-2 md:gap-16"> <Container className="grid grid-cols-1 items-center gap-10 md:grid-cols-2 md:gap-16">
<div className={cn(align === "right" && "md:order-2")}> <div className={cn(align === "right" && "md:order-2")}>
<Skeleton className="aspect-[4/5] w-full" /> <Skeleton className="aspect-[4/5] w-full" />
</div> </div>
@@ -51,7 +52,7 @@ export function FeaturedProductView({
<Skeleton className="h-11 w-32 rounded-md" /> <Skeleton className="h-11 w-32 rounded-md" />
</div> </div>
</div> </div>
</div> </Container>
</section> </section>
); );
} }
@@ -75,7 +76,7 @@ export function FeaturedProductView({
: "bg-background py-20 md:py-28" : "bg-background py-20 md:py-28"
} }
> >
<div className="container mx-auto grid max-w-7xl grid-cols-1 items-center gap-10 px-6 md:grid-cols-2 md:gap-16"> <Container className="grid grid-cols-1 items-center gap-10 md:grid-cols-2 md:gap-16">
<div className={align === "right" ? "md:order-2" : ""}> <div className={align === "right" ? "md:order-2" : ""}>
{image ? ( {image ? (
<img <img
@@ -89,9 +90,7 @@ export function FeaturedProductView({
</div> </div>
<div className="flex flex-col items-start gap-5"> <div className="flex flex-col items-start gap-5">
{tagline ? ( {tagline ? (
<p className="text-xs uppercase tracking-[0.2em] text-muted-foreground"> <Typography variant="caption">{tagline}</Typography>
{tagline}
</p>
) : null} ) : null}
<Typography variant="h2">{product.title}</Typography> <Typography variant="h2">{product.title}</Typography>
{formatted ? ( {formatted ? (
@@ -116,14 +115,14 @@ export function FeaturedProductView({
{ctaLabel} {ctaLabel}
</button> </button>
<Link <Link
to={`/products/${product.handle}`} href={`/products/${product.handle}`}
className="inline-flex items-center justify-center rounded-md border border-foreground px-6 py-3 text-sm font-medium tracking-wide hover:opacity-80" className="inline-flex items-center justify-center rounded-md border border-foreground px-6 py-3 text-sm font-medium tracking-wide hover:opacity-80"
> >
View details View details
</Link> </Link>
</div> </div>
</div> </div>
</div> </Container>
</section> </section>
); );
} }

View File

@@ -1,5 +1,6 @@
import * as React from "react"; import * as React from "react";
import { Link } from "react-router"; import Link from "next/link";
import { Typography } from "@/components/Typography";
type ProductImage = { url: string; altText?: string }; type ProductImage = { url: string; altText?: string };
type ProductPrice = { amount: string; currencyCode: string }; type ProductPrice = { amount: string; currencyCode: string };
@@ -40,7 +41,7 @@ export function ProductCard({
}; };
return ( return (
<Link to={`/products/${product.handle}`} className="group block"> <Link href={`/products/${product.handle}`} className="group block">
<div <div
className={`relative w-full overflow-hidden rounded-md bg-muted ${aspectClass[aspect]}`} className={`relative w-full overflow-hidden rounded-md bg-muted ${aspectClass[aspect]}`}
> >
@@ -53,7 +54,12 @@ export function ProductCard({
) : null} ) : null}
</div> </div>
<div className="mt-4 flex items-start justify-between gap-3"> <div className="mt-4 flex items-start justify-between gap-3">
<h3 className="text-sm font-medium tracking-tight">{product.title}</h3> <Typography
variant="subtitle2"
className="font-medium tracking-tight text-foreground"
>
{product.title}
</Typography>
{price ? ( {price ? (
<div className="flex flex-col items-end text-sm"> <div className="flex flex-col items-end text-sm">
{onSale && compare ? ( {onSale && compare ? (

View File

@@ -1,7 +1,7 @@
'use client'; 'use client';
import React, { useState, useEffect } from 'react'; import React, { useState, useEffect } from 'react';
import { Link } from 'react-router'; import Link from 'next/link';
import { useProduct, type Product } from '@/hooks/use-shopify-products'; import { useProduct, type Product } from '@/hooks/use-shopify-products';
import { useShopifyCart } from '@/hooks/use-shopify-cart'; import { useShopifyCart } from '@/hooks/use-shopify-cart';
import ProductDetailGallery from './product-detail-gallery'; import ProductDetailGallery from './product-detail-gallery';
@@ -158,19 +158,19 @@ const ProductDetail: React.FC<ProductDetailProps> = ({ handle: handleProp }) =>
} }
return ( return (
<div className="min-h-screen bg-white"> <div className="min-h-screen bg-background">
<div className="container mx-auto px-4 py-8"> <div className="container mx-auto px-4 py-8">
<Breadcrumb className="mb-6"> <Breadcrumb className="mb-6">
<BreadcrumbList> <BreadcrumbList>
<BreadcrumbItem> <BreadcrumbItem>
<BreadcrumbLink asChild> <BreadcrumbLink asChild>
<Link to="/">Home</Link> <Link href="/">Home</Link>
</BreadcrumbLink> </BreadcrumbLink>
</BreadcrumbItem> </BreadcrumbItem>
<BreadcrumbSeparator /> <BreadcrumbSeparator />
<BreadcrumbItem> <BreadcrumbItem>
<BreadcrumbLink asChild> <BreadcrumbLink asChild>
<Link to="/shop">Shop</Link> <Link href="/shop">Shop</Link>
</BreadcrumbLink> </BreadcrumbLink>
</BreadcrumbItem> </BreadcrumbItem>
<BreadcrumbSeparator /> <BreadcrumbSeparator />

View File

@@ -23,7 +23,7 @@ const ProductDetailGallery: React.FC<ProductDetailGalleryProps> = ({
return ( return (
<div> <div>
{/* Main Image */} {/* Main Image */}
<div className="aspect-square bg-gray-100 rounded-lg overflow-hidden mb-4"> <div className="aspect-square bg-muted rounded-lg overflow-hidden mb-4">
{images.length > 0 ? ( {images.length > 0 ? (
<img <img
src={images[selectedImage].url} src={images[selectedImage].url}
@@ -31,7 +31,7 @@ const ProductDetailGallery: React.FC<ProductDetailGalleryProps> = ({
className="w-full h-full object-cover" className="w-full h-full object-cover"
/> />
) : ( ) : (
<div className="w-full h-full flex items-center justify-center text-gray-400"> <div className="w-full h-full flex items-center justify-center text-muted-foreground">
<i className="ri-image-line text-6xl"></i> <i className="ri-image-line text-6xl"></i>
</div> </div>
)} )}
@@ -46,8 +46,8 @@ const ProductDetailGallery: React.FC<ProductDetailGalleryProps> = ({
onClick={() => setSelectedImage(index)} onClick={() => setSelectedImage(index)}
className={`aspect-square rounded-lg overflow-hidden border-2 transition-colors ${ className={`aspect-square rounded-lg overflow-hidden border-2 transition-colors ${
selectedImage === index selectedImage === index
? 'border-black' ? 'border-foreground'
: 'border-gray-200 hover:border-gray-300' : 'border-border hover:border-muted-foreground'
}`} }`}
> >
<img <img

View File

@@ -38,18 +38,18 @@ const ProductDetailInfo: React.FC<ProductDetailInfoProps> = ({
return ( return (
<div> <div>
<h1 className="text-4xl font-bold text-gray-900 mb-4 font-heading"> <h1 className="text-4xl font-bold text-foreground mb-4 font-heading">
{product.title} {product.title}
</h1> </h1>
{/* Price */} {/* Price */}
<div className="flex items-center space-x-4 mb-6"> <div className="flex items-center space-x-4 mb-6">
<span className="text-2xl font-bold text-gray-900"> <span className="text-2xl font-bold text-foreground">
{formatPrice(price)} {formatPrice(price)}
</span> </span>
{hasDiscount && compareAtPrice && ( {hasDiscount && compareAtPrice && (
<> <>
<span className="text-xl text-gray-500 line-through"> <span className="text-xl text-muted-foreground line-through">
{formatPrice(compareAtPrice)} {formatPrice(compareAtPrice)}
</span> </span>
<Badge variant="destructive"> <Badge variant="destructive">
@@ -61,7 +61,7 @@ const ProductDetailInfo: React.FC<ProductDetailInfoProps> = ({
{/* Description */} {/* Description */}
{product.description && ( {product.description && (
<div className="text-gray-600 mb-8 text-lg leading-relaxed"> <div className="text-muted-foreground mb-8 text-lg leading-relaxed">
{product.descriptionHtml ? ( {product.descriptionHtml ? (
<div dangerouslySetInnerHTML={{ __html: product.descriptionHtml }} /> <div dangerouslySetInnerHTML={{ __html: product.descriptionHtml }} />
) : ( ) : (
@@ -73,7 +73,7 @@ const ProductDetailInfo: React.FC<ProductDetailInfoProps> = ({
{/* Product Options */} {/* Product Options */}
{product.options.map(option => ( {product.options.map(option => (
<div key={option.id} className="mb-6"> <div key={option.id} className="mb-6">
<label className="block text-sm font-semibold text-gray-700 mb-2"> <label className="block text-sm font-semibold text-foreground mb-2">
{option.name} {option.name}
</label> </label>
<div className="flex flex-wrap gap-2"> <div className="flex flex-wrap gap-2">
@@ -92,10 +92,10 @@ const ProductDetailInfo: React.FC<ProductDetailInfoProps> = ({
{/* Quantity Selector */} {/* Quantity Selector */}
<div className="mb-8"> <div className="mb-8">
<label className="block text-sm font-semibold text-gray-700 mb-2"> <label className="block text-sm font-semibold text-foreground mb-2">
Quantity Quantity
</label> </label>
<div className="flex items-center border border-gray-300 rounded-lg w-fit"> <div className="flex items-center border border-border rounded-lg w-fit">
<Button <Button
onClick={() => setQuantity(Math.max(1, quantity - 1))} onClick={() => setQuantity(Math.max(1, quantity - 1))}
variant="ghost" variant="ghost"
@@ -135,8 +135,8 @@ const ProductDetailInfo: React.FC<ProductDetailInfoProps> = ({
</Button> </Button>
{/* Additional Info */} {/* Additional Info */}
<div className="mt-8 pt-8 border-t border-gray-200"> <div className="mt-8 pt-8 border-t border-border">
<div className="space-y-3 text-sm text-gray-600"> <div className="space-y-3 text-sm text-muted-foreground">
<div className="flex items-center space-x-2"> <div className="flex items-center space-x-2">
<i className="ri-truck-line"></i> <i className="ri-truck-line"></i>
<span>Free shipping on orders over $100</span> <span>Free shipping on orders over $100</span>

View File

@@ -17,29 +17,29 @@ const ProductRecommendations: React.FC<ProductRecommendationsProps> = ({ product
} }
return ( return (
<div className="bg-gray-50 py-16"> <div className="bg-muted py-16">
<div className="container mx-auto px-4"> <div className="container mx-auto px-4">
<h2 className="text-4xl font-bold text-center mb-12 text-gray-900 font-heading"> <h2 className="text-4xl font-bold text-center mb-12 text-foreground font-heading">
You Might Also Like You Might Also Like
</h2> </h2>
{loading ? ( {loading ? (
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-8"> <div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-8">
{Array.from({ length: 4 }).map((_, index) => ( {Array.from({ length: 4 }).map((_, index) => (
<div key={index} className="bg-white rounded-lg shadow-md overflow-hidden animate-pulse"> <div key={index} className="bg-card rounded-lg shadow-md overflow-hidden animate-pulse">
<div className="aspect-square bg-gray-200"></div> <div className="aspect-square bg-muted"></div>
<div className="p-6"> <div className="p-6">
<div className="h-6 bg-gray-200 rounded mb-2"></div> <div className="h-6 bg-muted rounded mb-2"></div>
<div className="h-4 bg-gray-200 rounded mb-4"></div> <div className="h-4 bg-muted rounded mb-4"></div>
<div className="h-8 bg-gray-200 rounded mb-4"></div> <div className="h-8 bg-muted rounded mb-4"></div>
<div className="h-12 bg-gray-200 rounded"></div> <div className="h-12 bg-muted rounded"></div>
</div> </div>
</div> </div>
))} ))}
</div> </div>
) : error ? ( ) : error ? (
<div className="text-center py-8"> <div className="text-center py-8">
<p className="text-gray-500">Recommendations could not be loaded</p> <p className="text-muted-foreground">Recommendations could not be loaded</p>
</div> </div>
) : ( ) : (
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-8"> <div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-8">

View File

@@ -1,5 +1,5 @@
import { useEffect, useState } from "react"; import { useEffect, useState } from "react";
import { useParams } from "react-router"; import { useParams } from "next/navigation";
import type { ShopifyProduct } from "@reacteditor/field-shopify"; import type { ShopifyProduct } from "@reacteditor/field-shopify";
import { useProduct } from "@/hooks/use-shopify-products"; import { useProduct } from "@/hooks/use-shopify-products";
import { useShopifyCart } from "@/hooks/use-shopify-cart"; import { useShopifyCart } from "@/hooks/use-shopify-cart";
@@ -7,13 +7,16 @@ import { Typography } from "@/components/Typography";
import { cn } from "@/lib/utils"; import { cn } from "@/lib/utils";
import { Skeleton } from "@/components/ui/skeleton"; import { Skeleton } from "@/components/ui/skeleton";
import { Loader } from "@/components/ui/loader"; import { Loader } from "@/components/ui/loader";
import { Container } from "@/components/layout/Container";
export type ProductDetailsProps = { export type ProductDetailsProps = {
product: ShopifyProduct | null; product: ShopifyProduct | null;
}; };
export function ProductDetailsView({ product: selected }: ProductDetailsProps) { export function ProductDetailsView({ product: selected }: ProductDetailsProps) {
const { handle: paramHandle } = useParams<{ handle?: string }>(); const params = useParams();
const paramHandle =
typeof params?.handle === "string" ? params.handle : undefined;
const handle = selected?.handle ?? paramHandle ?? null; const handle = selected?.handle ?? paramHandle ?? null;
const { product, loading } = useProduct(handle); const { product, loading } = useProduct(handle);
const cart = useShopifyCart(); const cart = useShopifyCart();
@@ -31,7 +34,7 @@ export function ProductDetailsView({ product: selected }: ProductDetailsProps) {
if (!handle || loading || !product) { if (!handle || loading || !product) {
return ( return (
<section className="bg-background py-12 md:py-20"> <section className="bg-background py-12 md:py-20">
<div className="container mx-auto grid max-w-7xl grid-cols-1 gap-10 px-6 md:grid-cols-2 md:gap-16"> <Container className="grid grid-cols-1 gap-10 md:grid-cols-2 md:gap-16">
<div className="flex flex-col gap-4"> <div className="flex flex-col gap-4">
<Skeleton className="aspect-[4/5] w-full" /> <Skeleton className="aspect-[4/5] w-full" />
<div className="flex gap-3"> <div className="flex gap-3">
@@ -62,7 +65,7 @@ export function ProductDetailsView({ product: selected }: ProductDetailsProps) {
<Skeleton className="h-4 w-4/6" /> <Skeleton className="h-4 w-4/6" />
</div> </div>
</div> </div>
</div> </Container>
</section> </section>
); );
} }
@@ -90,7 +93,7 @@ export function ProductDetailsView({ product: selected }: ProductDetailsProps) {
return ( return (
<section className="bg-background py-12 md:py-20"> <section className="bg-background py-12 md:py-20">
<div className="container mx-auto grid max-w-7xl grid-cols-1 gap-10 px-6 md:grid-cols-2 md:gap-16"> <Container className="grid grid-cols-1 gap-10 md:grid-cols-2 md:gap-16">
<div className="flex flex-col gap-4"> <div className="flex flex-col gap-4">
<div className="aspect-[4/5] w-full overflow-hidden rounded-md bg-muted"> <div className="aspect-[4/5] w-full overflow-hidden rounded-md bg-muted">
{main ? ( {main ? (
@@ -214,7 +217,7 @@ export function ProductDetailsView({ product: selected }: ProductDetailsProps) {
</div> </div>
) : null} ) : null}
</div> </div>
</div> </Container>
</section> </section>
); );
} }

View File

@@ -1,10 +1,10 @@
import { useEffect, useState } from "react"; import { useEffect, useState } from "react";
import { Link } from "react-router"; import Link from "next/link";
import type { ShopifyCollection } from "@reacteditor/field-shopify"; import type { ShopifyCollection } from "@reacteditor/field-shopify";
import { getProducts } from "@/hooks/use-shopify-products"; import { getProducts } from "@/hooks/use-shopify-products";
import { getCollectionProducts } from "@/hooks/use-shopify-collections"; import { getCollectionProducts } from "@/hooks/use-shopify-collections";
import { ProductCard } from "./product-card"; import { ProductCard } from "./product-card";
import { Typography } from "@/components/Typography"; import { Heading } from "@/components/Heading";
import { import {
Carousel, Carousel,
CarouselContent, CarouselContent,
@@ -12,6 +12,7 @@ import {
CarouselNext, CarouselNext,
CarouselPrevious, CarouselPrevious,
} from "@/components/ui/carousel"; } from "@/components/ui/carousel";
import { Container } from "@/components/layout/Container";
export type ProductsCarouselProps = { export type ProductsCarouselProps = {
collection: ShopifyCollection | null; collection: ShopifyCollection | null;
@@ -71,24 +72,19 @@ export function ProductsCarousel({
return ( return (
<section className="bg-background py-20 md:py-28"> <section className="bg-background py-20 md:py-28">
<div className="container mx-auto max-w-7xl px-6"> <Container>
<div className="mb-10 flex flex-col gap-6 md:flex-row md:items-end md:justify-between"> <div className="mb-10 flex flex-col gap-6 md:flex-row md:items-end md:justify-between">
<div className="max-w-xl"> <Heading
{tagline ? ( tagline={tagline}
<p className="mb-3 text-xs uppercase tracking-[0.2em] text-muted-foreground"> title={heading}
{tagline} subtitle={subheading}
</p> align="left"
) : null} size="lg"
<Typography variant="h2">{heading}</Typography> maxWidth="max-w-xl"
{subheading ? ( />
<Typography variant="subtitle1" className="mt-3">
{subheading}
</Typography>
) : null}
</div>
{ctaLabel ? ( {ctaLabel ? (
<Link <Link
to={ href={
ctaHref || ctaHref ||
(collection?.handle ? `/collections/${collection.handle}` : "/collections") (collection?.handle ? `/collections/${collection.handle}` : "/collections")
} }
@@ -120,7 +116,7 @@ export function ProductsCarousel({
<CarouselPrevious className="hidden md:inline-flex" /> <CarouselPrevious className="hidden md:inline-flex" />
<CarouselNext className="hidden md:inline-flex" /> <CarouselNext className="hidden md:inline-flex" />
</Carousel> </Carousel>
</div> </Container>
</section> </section>
); );
} }

View File

@@ -1,10 +1,11 @@
import { useEffect, useState } from "react"; import { useEffect, useState } from "react";
import { Link } from "react-router"; import Link from "next/link";
import type { ShopifyCollection } from "@reacteditor/field-shopify"; import type { ShopifyCollection } from "@reacteditor/field-shopify";
import { getProducts } from "@/hooks/use-shopify-products"; import { getProducts } from "@/hooks/use-shopify-products";
import { getCollectionProducts } from "@/hooks/use-shopify-collections"; import { getCollectionProducts } from "@/hooks/use-shopify-collections";
import { ProductCard } from "./product-card"; import { ProductCard } from "./product-card";
import { Typography } from "@/components/Typography"; import { Container } from "@/components/layout/Container";
import { Heading } from "@/components/Heading";
export type ProductsGridProps = { export type ProductsGridProps = {
collection: ShopifyCollection | null; collection: ShopifyCollection | null;
@@ -59,24 +60,19 @@ export function ProductsGrid({
return ( return (
<section className="bg-background py-20 md:py-28"> <section className="bg-background py-20 md:py-28">
<div className="container mx-auto max-w-7xl px-6"> <Container>
<div className="mb-12 flex flex-col items-end justify-between gap-6 md:flex-row md:items-end"> <div className="mb-12 flex flex-col items-end justify-between gap-6 md:flex-row md:items-end">
<div className="max-w-xl"> <Heading
{tagline ? ( tagline={tagline}
<p className="mb-3 text-xs uppercase tracking-[0.2em] text-muted-foreground"> title={heading}
{tagline} subtitle={subheading}
</p> align="left"
) : null} size="lg"
<Typography variant="h2">{heading}</Typography> maxWidth="max-w-xl"
{subheading ? ( />
<Typography variant="subtitle1" className="mt-3">
{subheading}
</Typography>
) : null}
</div>
{ctaLabel ? ( {ctaLabel ? (
<Link <Link
to={ctaHref || (collection?.handle ? `/collections/${collection.handle}` : "/collections")} href={ctaHref || (collection?.handle ? `/collections/${collection.handle}` : "/collections")}
className="text-sm font-medium tracking-wide hover:opacity-70" className="text-sm font-medium tracking-wide hover:opacity-70"
> >
{ctaLabel} {ctaLabel}
@@ -94,7 +90,7 @@ export function ProductsGrid({
)) ))
: products.map((p) => <ProductCard key={p.id} product={p} />)} : products.map((p) => <ProductCard key={p.id} product={p} />)}
</div> </div>
</div> </Container>
</section> </section>
); );
} }

View File

@@ -127,13 +127,13 @@ const Products: React.FC<ProductsProps> = ({
{/* Loading Skeleton */} {/* Loading Skeleton */}
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-8"> <div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-8">
{Array.from({ length: 8 }).map((_, index) => ( {Array.from({ length: 8 }).map((_, index) => (
<div key={index} className="bg-white rounded-lg shadow-md overflow-hidden animate-pulse"> <div key={index} className="bg-card rounded-lg shadow-md overflow-hidden animate-pulse">
<div className="aspect-square bg-gray-200"></div> <div className="aspect-square bg-muted"></div>
<div className="p-6"> <div className="p-6">
<div className="h-6 bg-gray-200 rounded mb-2"></div> <div className="h-6 bg-muted rounded mb-2"></div>
<div className="h-4 bg-gray-200 rounded mb-4"></div> <div className="h-4 bg-muted rounded mb-4"></div>
<div className="h-8 bg-gray-200 rounded mb-4"></div> <div className="h-8 bg-muted rounded mb-4"></div>
<div className="h-12 bg-gray-200 rounded"></div> <div className="h-12 bg-muted rounded"></div>
</div> </div>
</div> </div>
))} ))}
@@ -173,12 +173,12 @@ const Products: React.FC<ProductsProps> = ({
{title} {title}
</h2> </h2>
<div className="bg-gray-50 border border-gray-200 rounded-lg p-8 max-w-md mx-auto"> <div className="bg-muted border border-border rounded-lg p-8 max-w-md mx-auto">
<i className="ri-shopping-bag-line text-4xl text-gray-400 mb-4"></i> <i className="ri-shopping-bag-line text-4xl text-muted-foreground mb-4"></i>
<h3 className="text-lg font-semibold text-gray-600 mb-2"> <h3 className="text-lg font-semibold text-foreground mb-2">
No Products Found No Products Found
</h3> </h3>
<p className="text-gray-500"> <p className="text-muted-foreground">
Check back later or configure your Shopify store connection. Check back later or configure your Shopify store connection.
</p> </p>
</div> </div>
@@ -190,7 +190,7 @@ const Products: React.FC<ProductsProps> = ({
return ( return (
<div className="py-16"> <div className="py-16">
<div className="container mx-auto px-4"> <div className="container mx-auto px-4">
<h2 className="text-5xl font-bold text-center mb-16 text-gray-900 font-heading"> <h2 className="text-5xl font-bold text-center mb-16 text-foreground font-heading">
{title} {title}
</h2> </h2>

View File

@@ -4,8 +4,9 @@ import {
useProductRecommendations, useProductRecommendations,
} from "@/hooks/use-shopify-products"; } from "@/hooks/use-shopify-products";
import { ProductCard } from "./product-card"; import { ProductCard } from "./product-card";
import { Typography } from "@/components/Typography";
import { Skeleton } from "@/components/ui/skeleton"; import { Skeleton } from "@/components/ui/skeleton";
import { Container } from "@/components/layout/Container";
import { Heading } from "@/components/Heading";
export type RecommendedProductsProps = { export type RecommendedProductsProps = {
product: ShopifyProduct | null; product: ShopifyProduct | null;
@@ -27,7 +28,7 @@ export function RecommendedProductsView({
if (!selected) { if (!selected) {
return ( return (
<section className="bg-background py-20 md:py-28"> <section className="bg-background py-20 md:py-28">
<div className="container mx-auto max-w-7xl px-6"> <Container>
<div className="mb-12 flex max-w-xl flex-col gap-3"> <div className="mb-12 flex max-w-xl flex-col gap-3">
{tagline ? <Skeleton className="h-3 w-24" /> : null} {tagline ? <Skeleton className="h-3 w-24" /> : null}
<Skeleton className="h-8 w-2/3" /> <Skeleton className="h-8 w-2/3" />
@@ -37,22 +38,22 @@ export function RecommendedProductsView({
<Skeleton key={i} className="aspect-[4/5] w-full" /> <Skeleton key={i} className="aspect-[4/5] w-full" />
))} ))}
</div> </div>
</div> </Container>
</section> </section>
); );
} }
return ( return (
<section className="bg-background py-20 md:py-28"> <section className="bg-background py-20 md:py-28">
<div className="container mx-auto max-w-7xl px-6"> <Container>
<div className="mb-12 max-w-xl"> <Heading
{tagline ? ( tagline={tagline}
<p className="mb-3 text-xs uppercase tracking-[0.2em] text-muted-foreground"> title={heading}
{tagline} align="left"
</p> size="md"
) : null} className="mb-12"
<Typography variant="h3">{heading}</Typography> maxWidth="max-w-xl"
</div> />
<div className="grid grid-cols-2 gap-x-6 gap-y-12 md:grid-cols-4"> <div className="grid grid-cols-2 gap-x-6 gap-y-12 md:grid-cols-4">
{items.length === 0 {items.length === 0
@@ -61,7 +62,7 @@ export function RecommendedProductsView({
)) ))
: items.map((p: any) => <ProductCard key={p.id} product={p} />)} : items.map((p: any) => <ProductCard key={p.id} product={p} />)}
</div> </div>
</div> </Container>
</section> </section>
); );
} }

View File

@@ -1,11 +1,14 @@
import { useState, useEffect, useCallback } from 'react'; import { useState, useEffect, useCallback } from 'react';
import { useSearchParams } from 'react-router'; import { useSearchParams, useRouter, usePathname } from 'next/navigation';
import { ChevronDown, SlidersHorizontal, X } from 'lucide-react'; import { ChevronDown, SlidersHorizontal } from 'lucide-react';
import { useShopifySearch, type SearchFilters, type SortOption } from '@/hooks/use-shopify-search'; import { useShopifySearch, type SearchFilters, type SortOption } from '@/hooks/use-shopify-search';
import { ProductCard } from './product-card'; import { ProductCard } from './product-card';
import { Skeleton } from '@/components/ui/skeleton'; import { Skeleton } from '@/components/ui/skeleton';
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from '@/components/ui/select'; import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from '@/components/ui/select';
import { Button } from '@/components/ui/button';
import { Sheet, SheetContent, SheetHeader, SheetTitle, SheetTrigger, SheetFooter } from '@/components/ui/sheet';
import { Container } from '@/components/layout/Container';
import { cn } from '@/lib/utils'; import { cn } from '@/lib/utils';
type FilterOption = { label: string }; type FilterOption = { label: string };
@@ -146,48 +149,8 @@ function Sidebar({
onChange({ [key]: arr.includes(value) ? arr.filter((v) => v !== value) : [...arr, value] }); onChange({ [key]: arr.includes(value) ? arr.filter((v) => v !== value) : [...arr, value] });
} }
const hasActiveFilters =
active.availability ||
active.productTypes.length > 0 ||
active.vendors.length > 0 ||
active.tags.length > 0 ||
active.colors.length > 0 ||
active.styles.length > 0 ||
active.sizes.length > 0 ||
active.materials.length > 0 ||
active.minPrice !== '' ||
active.maxPrice !== '' ||
Object.values(active.metafieldValues).some((arr) => arr.length > 0);
return ( return (
<aside className="w-full shrink-0 md:w-52 lg:w-56"> <div className="w-full">
<div className="flex items-center justify-between border-b border-border pb-4">
<span className="text-xs font-semibold uppercase tracking-[0.15em]">Filters</span>
{hasActiveFilters && (
<button
type="button"
onClick={() =>
onChange({
availability: false,
productTypes: [],
vendors: [],
tags: [],
colors: [],
styles: [],
sizes: [],
materials: [],
minPrice: '',
maxPrice: '',
metafieldValues: {},
})
}
className="flex items-center gap-1 text-xs text-muted-foreground hover:text-foreground"
>
<X size={12} /> Clear all
</button>
)}
</div>
{props.showAvailability === 'yes' && ( {props.showAvailability === 'yes' && (
<FilterGroup label="Availability"> <FilterGroup label="Availability">
<Checkbox <Checkbox
@@ -347,20 +310,22 @@ function Sidebar({
</FilterGroup> </FilterGroup>
); );
})} })}
</aside> </div>
); );
} }
// ─── Main component ────────────────────────────────────────────────────────── // ─── Main component ──────────────────────────────────────────────────────────
export function SearchProductsView(props: SearchProductsProps) { export function SearchProductsView(props: SearchProductsProps) {
const [searchParams, setSearchParams] = useSearchParams(); const searchParams = useSearchParams();
const router = useRouter();
const pathname = usePathname();
const initialQ = searchParams.get('q') ?? ''; const initialQ = searchParams.get('q') ?? '';
const [query, setQuery] = useState(initialQ); const [query, setQuery] = useState(initialQ);
const [inputValue, setInputValue] = useState(initialQ); const [inputValue, setInputValue] = useState(initialQ);
const [sort, setSort] = useState<SortOption>(props.defaultSort); const [sort, setSort] = useState<SortOption>(props.defaultSort);
const [mobileFiltersOpen, setMobileFiltersOpen] = useState(false); const [filtersOpen, setFiltersOpen] = useState(false);
const [active, setActive] = useState<ActiveFilters>({ const [active, setActive] = useState<ActiveFilters>({
availability: false, availability: false,
productTypes: [], productTypes: [],
@@ -379,6 +344,22 @@ export function SearchProductsView(props: SearchProductsProps) {
setActive((prev) => ({ ...prev, ...patch })); setActive((prev) => ({ ...prev, ...patch }));
}, []); }, []);
const clearAll = useCallback(() => {
setActive({
availability: false,
productTypes: [],
vendors: [],
tags: [],
colors: [],
styles: [],
sizes: [],
materials: [],
minPrice: '',
maxPrice: '',
metafieldValues: {},
});
}, []);
const filters: SearchFilters = { const filters: SearchFilters = {
q: query, q: query,
sort, sort,
@@ -407,9 +388,10 @@ export function SearchProductsView(props: SearchProductsProps) {
// Sync ?q= param when query changes // Sync ?q= param when query changes
useEffect(() => { useEffect(() => {
const params = new URLSearchParams(searchParams); const params = new URLSearchParams(searchParams.toString());
if (query) params.set('q', query); else params.delete('q'); if (query) params.set('q', query); else params.delete('q');
setSearchParams(params, { replace: true }); const qs = params.toString();
router.replace(qs ? `${pathname}?${qs}` : pathname, { scroll: false });
}, [query]); }, [query]);
const handleSearch = (e: React.FormEvent) => { const handleSearch = (e: React.FormEvent) => {
@@ -419,7 +401,7 @@ export function SearchProductsView(props: SearchProductsProps) {
return ( return (
<section className="bg-background py-12 md:py-16"> <section className="bg-background py-12 md:py-16">
<div className="container mx-auto max-w-7xl px-6"> <Container>
{/* Page header */} {/* Page header */}
<div className="mb-10"> <div className="mb-10">
@@ -449,44 +431,7 @@ export function SearchProductsView(props: SearchProductsProps) {
</form> </form>
</div> </div>
{/* Mobile filter toggle */} {/* Search bar (desktop only — mobile lives in header above) */}
<div className="mb-4 flex items-center justify-between md:hidden">
<button
type="button"
onClick={() => setMobileFiltersOpen((o) => !o)}
className="flex items-center gap-2 rounded-md border border-border px-3 py-2 text-sm font-medium"
>
<SlidersHorizontal size={14} />
Filters
</button>
<Select value={sort} onValueChange={(v) => setSort(v as SortOption)}>
<SelectTrigger className="h-auto px-3 py-2 text-sm">
<SelectValue>{SORT_OPTIONS.find((o) => o.value === sort)?.label}</SelectValue>
</SelectTrigger>
<SelectContent>
{SORT_OPTIONS.map((o) => (
<SelectItem key={o.value} value={o.value}>{o.label}</SelectItem>
))}
</SelectContent>
</Select>
</div>
{/* Mobile filter panel */}
{mobileFiltersOpen && (
<div className="mb-6 rounded-lg border border-border p-4 md:hidden">
<Sidebar props={props} active={active} onChange={patchActive} />
</div>
)}
<div className="flex gap-10">
{/* Desktop sidebar */}
<div className="hidden md:block">
<Sidebar props={props} active={active} onChange={patchActive} />
</div>
{/* Product area */}
<div className="min-w-0 flex-1">
{/* Search bar (desktop only) */}
<form onSubmit={handleSearch} className="mb-4 hidden gap-2 md:flex"> <form onSubmit={handleSearch} className="mb-4 hidden gap-2 md:flex">
<input <input
type="search" type="search"
@@ -503,14 +448,42 @@ export function SearchProductsView(props: SearchProductsProps) {
</button> </button>
</form> </form>
{/* Sort + count bar */} {/* Filter + sort bar */}
<div className="mb-6 flex items-center justify-between"> <div className="mb-6 flex items-center justify-between">
<p className="text-sm text-muted-foreground"> <Sheet open={filtersOpen} onOpenChange={setFiltersOpen}>
<SheetTrigger asChild>
<button
type="button"
className="flex items-center gap-2 rounded-md border border-border px-3 py-2 text-sm font-medium hover:bg-muted"
>
<SlidersHorizontal size={14} />
Filters
</button>
</SheetTrigger>
<SheetContent side="left" className="w-full sm:max-w-md">
<SheetHeader>
<SheetTitle>Filters</SheetTitle>
</SheetHeader>
<div className="flex-1 overflow-y-auto px-4">
<Sidebar props={props} active={active} onChange={patchActive} />
</div>
<SheetFooter className="flex-row gap-2 border-t border-border">
<Button variant="outline" className="flex-1" onClick={clearAll}>
Clear
</Button>
<Button className="flex-1" onClick={() => setFiltersOpen(false)}>
Search
</Button>
</SheetFooter>
</SheetContent>
</Sheet>
<div className="flex items-center gap-4">
<p className="hidden text-sm text-muted-foreground sm:block">
{loading ? 'Loading…' : `${products.length} product${products.length === 1 ? '' : 's'}`} {loading ? 'Loading…' : `${products.length} product${products.length === 1 ? '' : 's'}`}
</p> </p>
<div className="hidden md:block">
<Select value={sort} onValueChange={(v) => setSort(v as SortOption)}> <Select value={sort} onValueChange={(v) => setSort(v as SortOption)}>
<SelectTrigger className="h-auto px-3 py-1.5 text-sm"> <SelectTrigger className="h-auto px-3 py-2 text-sm">
<SelectValue>{SORT_OPTIONS.find((o) => o.value === sort)?.label}</SelectValue> <SelectValue>{SORT_OPTIONS.find((o) => o.value === sort)?.label}</SelectValue>
</SelectTrigger> </SelectTrigger>
<SelectContent> <SelectContent>
@@ -554,9 +527,7 @@ export function SearchProductsView(props: SearchProductsProps) {
</button> </button>
</div> </div>
)} )}
</div> </Container>
</div>
</div>
</section> </section>
); );
} }

View File

@@ -1,24 +0,0 @@
import React from 'react';
const Footer: React.FC = () => {
return (
<footer className="bg-black text-white py-12">
<div className="container mx-auto px-4 text-center">
<h3
className="text-2xl font-bold mb-4"
style={{fontFamily: 'Space Grotesk, sans-serif'}}
>
Store
</h3>
<p className="text-gray-400 mb-6">
Your premium shopping destination
</p>
<div className="mt-8 pt-8 border-t border-gray-800 text-gray-400">
<p>&copy; 2025 Store. All rights reserved.</p>
</div>
</div>
</footer>
);
};
export default Footer;

View File

@@ -1,68 +0,0 @@
'use client';
import React from 'react';
import { Link } from 'react-router';
import { useShopifyCart } from '@/hooks/use-shopify-cart';
import config from '@/lib/config.json';
const CartIcon: React.FC = () => {
const { toggleCart, itemCount } = useShopifyCart();
return (
<button
onClick={toggleCart}
className="relative p-1 text-black hover:text-gray-600 transition-colors"
>
<i className="ri-shopping-cart-line text-xl"></i>
{itemCount > 0 && (
<span className="absolute -top-1 -right-1 bg-black text-white text-[10px] rounded-full w-4 h-4 flex items-center justify-center font-semibold">
{itemCount > 99 ? '99+' : itemCount}
</span>
)}
</button>
);
};
const Header: React.FC = () => {
return (
<nav className="bg-white shadow-sm sticky top-0 z-30 h-14">
<div className="container mx-auto px-4 h-full">
<div className="flex justify-between items-center h-full">
{/* Logo */}
<Link to="/" className="text-lg font-bold text-black font-heading">
{config.brand.logo.url ? (
<img
src={config.brand.logo.url}
alt={config.brand.logo.alt || 'Store'}
className="h-8"
/>
) : (
'Store'
)}
</Link>
{/* Navigation Links */}
<div className="flex items-center space-x-6">
<Link
to="/"
className="text-sm text-black hover:text-gray-600 font-medium transition-colors"
>
Products
</Link>
<Link
to="/collections"
className="text-sm text-black hover:text-gray-600 font-medium transition-colors"
>
Collections
</Link>
{/* Cart Icon */}
<CartIcon />
</div>
</div>
</div>
</nav>
);
};
export default Header;

View File

@@ -1,6 +1,6 @@
import { Link } from "react-router"; import Link from "next/link";
import { cn } from "@/lib/utils"; import { cn } from "@/lib/utils";
import { Typography } from "@/components/Typography"; import { Heading } from "@/components/Heading";
export type CTAProps = { export type CTAProps = {
tagline: string; tagline: string;
@@ -43,17 +43,15 @@ export function CTA({
align === "center" ? "items-center text-center" : "items-start", align === "center" ? "items-center text-center" : "items-start",
)} )}
> >
{tagline ? ( <Heading
<p className="mb-4 text-xs uppercase tracking-[0.2em] text-white/80"> tagline={tagline}
{tagline} title={heading}
</p> subtitle={subheading}
) : null} align={align === "center" ? "center" : "left"}
<Typography variant="h2">{heading}</Typography> size="lg"
{subheading ? ( tone="light"
<Typography variant="subtitle1" className="mt-5 max-w-xl text-white/80"> subtitleClassName="max-w-xl"
{subheading} />
</Typography>
) : null}
<div <div
className={cn( className={cn(
"mt-10 flex flex-wrap gap-3", "mt-10 flex flex-wrap gap-3",
@@ -62,7 +60,7 @@ export function CTA({
> >
{primaryCta?.label ? ( {primaryCta?.label ? (
<Link <Link
to={primaryCta.href || "#"} href={primaryCta.href || "#"}
className="inline-flex items-center justify-center rounded-md bg-white px-6 py-3 text-sm font-medium tracking-wide text-black hover:opacity-90" className="inline-flex items-center justify-center rounded-md bg-white px-6 py-3 text-sm font-medium tracking-wide text-black hover:opacity-90"
> >
{primaryCta.label} {primaryCta.label}
@@ -70,7 +68,7 @@ export function CTA({
) : null} ) : null}
{secondaryCta?.label ? ( {secondaryCta?.label ? (
<Link <Link
to={secondaryCta.href || "#"} href={secondaryCta.href || "#"}
className="inline-flex items-center justify-center rounded-md border border-white px-6 py-3 text-sm font-medium tracking-wide text-white hover:bg-white/10" className="inline-flex items-center justify-center rounded-md border border-white px-6 py-3 text-sm font-medium tracking-wide text-white hover:bg-white/10"
> >
{secondaryCta.label} {secondaryCta.label}

View File

@@ -1,6 +1,6 @@
import { useState } from "react"; import { useState } from "react";
import { Plus, Minus } from "lucide-react"; import { Plus, Minus } from "lucide-react";
import { Typography } from "@/components/Typography"; import { Heading } from "@/components/Heading";
export type FAQProps = { export type FAQProps = {
tagline: string; tagline: string;
@@ -14,19 +14,14 @@ export function FAQ({ tagline, heading, subheading, items }: FAQProps) {
return ( return (
<section className="bg-background py-20 md:py-28"> <section className="bg-background py-20 md:py-28">
<div className="container mx-auto max-w-3xl px-6"> <div className="container mx-auto max-w-3xl px-6">
<div className="mb-12 text-center"> <Heading
{tagline ? ( tagline={tagline}
<p className="mb-3 text-xs uppercase tracking-[0.2em] text-muted-foreground"> title={heading}
{tagline} subtitle={subheading}
</p> align="center"
) : null} size="lg"
<Typography variant="h2">{heading}</Typography> className="mb-12"
{subheading ? ( />
<Typography variant="subtitle1" className="mt-3">
{subheading}
</Typography>
) : null}
</div>
<div className="divide-y divide-border border-y border-border"> <div className="divide-y divide-border border-y border-border">
{items.map((item, i) => { {items.map((item, i) => {

View File

@@ -1,4 +1,6 @@
import { Typography } from "@/components/Typography"; import { Typography } from "@/components/Typography";
import { Container } from "@/components/layout/Container";
import { Heading } from "@/components/Heading";
export type FeaturesProps = { export type FeaturesProps = {
tagline: string; tagline: string;
@@ -17,35 +19,31 @@ const colClass: Record<FeaturesProps["columns"], string> = {
export function Features({ tagline, heading, subheading, columns, items }: FeaturesProps) { export function Features({ tagline, heading, subheading, columns, items }: FeaturesProps) {
return ( return (
<section className="bg-background py-20 md:py-28"> <section className="bg-background py-20 md:py-28">
<div className="container mx-auto max-w-7xl px-6"> <Container>
<div className="mx-auto mb-16 max-w-2xl text-center"> <Heading
{tagline ? ( tagline={tagline}
<p className="mb-3 text-xs uppercase tracking-[0.2em] text-muted-foreground"> title={heading}
{tagline} subtitle={subheading}
</p> align="center"
) : null} size="lg"
<Typography variant="h2">{heading}</Typography> className="mx-auto mb-16"
{subheading ? ( maxWidth="max-w-2xl"
<Typography variant="subtitle1" className="mt-3"> />
{subheading}
</Typography>
) : null}
</div>
<div className={`grid grid-cols-1 gap-x-10 gap-y-12 ${colClass[columns]}`}> <div className={`grid grid-cols-1 gap-x-10 gap-y-12 ${colClass[columns]}`}>
{items.map((item, i) => ( {items.map((item, i) => (
<div key={i} className="border-t border-border pt-6"> <div key={i} className="flex flex-col gap-3">
<p className="mb-3 text-xs tracking-[0.18em] text-muted-foreground"> <Typography variant="caption">
{String(i + 1).padStart(2, "0")} {String(i + 1).padStart(2, "0")}
</p> </Typography>
<Typography variant="h5">{item.title}</Typography> <Typography variant="h5">{item.title}</Typography>
<Typography variant="body2" className="mt-3 text-muted-foreground"> <Typography variant="body2" className="text-muted-foreground">
{item.body} {item.body}
</Typography> </Typography>
</div> </div>
))} ))}
</div> </div>
</div> </Container>
</section> </section>
); );
} }

View File

@@ -1,6 +1,7 @@
import { useState } from "react"; import { useState } from "react";
import { Link } from "react-router"; import Link from "next/link";
import { Typography } from "@/components/Typography"; import { Typography } from "@/components/Typography";
import { Container } from "@/components/layout/Container";
export type FooterProps = { export type FooterProps = {
brand: string; brand: string;
@@ -45,7 +46,7 @@ export function Footer({
return ( return (
<footer className="border-t border-border bg-background"> <footer className="border-t border-border bg-background">
<div className="container mx-auto max-w-7xl px-6 py-20 md:py-24"> <Container className="py-20 md:py-24">
<div className="grid grid-cols-1 gap-12 md:grid-cols-12"> <div className="grid grid-cols-1 gap-12 md:grid-cols-12">
<div className="md:col-span-4"> <div className="md:col-span-4">
<Typography variant="h5" as="p"> <Typography variant="h5" as="p">
@@ -96,7 +97,7 @@ export function Footer({
{col.links.map((l, j) => ( {col.links.map((l, j) => (
<li key={j}> <li key={j}>
<Link <Link
to={l.href} href={l.href}
className="text-sm text-foreground/80 hover:text-foreground" className="text-sm text-foreground/80 hover:text-foreground"
> >
{l.label} {l.label}
@@ -123,7 +124,7 @@ export function Footer({
))} ))}
</div> </div>
</div> </div>
</div> </Container>
</footer> </footer>
); );
} }

View File

@@ -13,8 +13,10 @@ export const heroEditor: ComponentConfig<HeroProps> = {
heading: "Made for the way you move", heading: "Made for the way you move",
subheading: subheading:
"A considered wardrobe of essentials, cut from natural fibers and designed to last.", "A considered wardrobe of essentials, cut from natural fibers and designed to last.",
primaryCta: { label: "Shop the collection", href: "/collections" }, buttons: [
secondaryCta: { label: "Our story", href: "/about" }, { label: "Shop the collection", href: "/collections", variant: "primary" },
{ label: "Our story", href: "/about", variant: "secondary" },
],
imageUrl: imageUrl:
"https://images.unsplash.com/photo-1490481651871-ab68de25d43d?auto=format&fit=crop&w=2400&q=80", "https://images.unsplash.com/photo-1490481651871-ab68de25d43d?auto=format&fit=crop&w=2400&q=80",
align: "left", align: "left",
@@ -25,21 +27,29 @@ export const heroEditor: ComponentConfig<HeroProps> = {
tagline: { label: "Tagline", type: "text", contentEditable: true }, tagline: { label: "Tagline", type: "text", contentEditable: true },
heading: { label: "Heading", type: "textarea", contentEditable: true }, heading: { label: "Heading", type: "textarea", contentEditable: true },
subheading: { label: "Subheading", type: "textarea", contentEditable: true }, subheading: { label: "Subheading", type: "textarea", contentEditable: true },
primaryCta: { buttons: {
label: "Primary CTA", label: "Buttons",
type: "object", type: "array",
objectFields: { arrayFields: {
label: { label: "Label", type: "text", contentEditable: true }, label: { label: "Label", type: "text", contentEditable: true },
href: { label: "Link", type: "text" }, href: { label: "Link", type: "text" },
variant: {
label: "Variant",
type: "select",
options: [
{ label: "Primary (filled)", value: "primary" },
{ label: "Secondary (outline)", value: "secondary" },
{ label: "Outline", value: "outline" },
{ label: "Ghost", value: "ghost" },
],
}, },
}, },
secondaryCta: { defaultItemProps: {
label: "Secondary CTA", label: "Button",
type: "object", href: "/",
objectFields: { variant: "primary",
label: { label: "Label", type: "text", contentEditable: true },
href: { label: "Link", type: "text" },
}, },
getItemSummary: (item) => item?.label || "Button",
}, },
imageUrl: { label: "Background image", ...imageField({ adapter: frontendAiMediaAdapter }) }, imageUrl: { label: "Background image", ...imageField({ adapter: frontendAiMediaAdapter }) },
align: { align: {

View File

@@ -1,13 +1,20 @@
import { Link } from "react-router"; import Link from "next/link";
import { cn } from "@/lib/utils"; import { cn } from "@/lib/utils";
import { Typography } from "@/components/Typography"; import { Typography } from "@/components/Typography";
export type HeroButtonVariant = "primary" | "secondary" | "outline" | "ghost";
export type HeroButton = {
label: string;
href: string;
variant: HeroButtonVariant;
};
export type HeroProps = { export type HeroProps = {
tagline: string; tagline: string;
heading: string; heading: string;
subheading: string; subheading: string;
primaryCta: { label: string; href: string }; buttons: HeroButton[];
secondaryCta: { label: string; href: string };
imageUrl: string; imageUrl: string;
align: "left" | "center"; align: "left" | "center";
height: "md" | "lg" | "full"; height: "md" | "lg" | "full";
@@ -20,18 +27,40 @@ const heightClass: Record<HeroProps["height"], string> = {
full: "min-h-screen", full: "min-h-screen",
}; };
function buttonClass(variant: HeroButtonVariant, isDark: boolean): string {
switch (variant) {
case "primary":
return cn(
"inline-flex items-center justify-center rounded-md px-6 py-3 text-sm font-medium tracking-wide transition-opacity hover:opacity-90",
isDark ? "bg-white text-black" : "bg-foreground text-background",
);
case "secondary":
case "outline":
return cn(
"inline-flex items-center justify-center rounded-md border px-6 py-3 text-sm font-medium tracking-wide transition-opacity hover:opacity-80",
isDark ? "border-white text-white" : "border-foreground text-foreground",
);
case "ghost":
return cn(
"inline-flex items-center justify-center rounded-md px-6 py-3 text-sm font-medium tracking-wide transition-opacity hover:opacity-80",
isDark ? "text-white" : "text-foreground",
);
}
}
export function Hero({ export function Hero({
tagline, tagline,
heading, heading,
subheading, subheading,
primaryCta, buttons,
secondaryCta,
imageUrl, imageUrl,
align, align,
height, height,
tone, tone,
}: HeroProps) { }: HeroProps) {
const isDark = tone === "dark"; const isDark = tone === "dark";
const visibleButtons = (buttons ?? []).filter((b) => b?.label);
return ( return (
<section <section
className={cn( className={cn(
@@ -63,14 +92,15 @@ export function Hero({
)} )}
> >
{tagline ? ( {tagline ? (
<p <Typography
variant="caption"
className={cn( className={cn(
"mb-5 text-xs uppercase tracking-[0.2em]", "mb-5",
isDark ? "text-white/80" : "text-foreground/70", isDark ? "text-white/80" : "text-foreground/70",
)} )}
> >
{tagline} {tagline}
</p> </Typography>
) : null} ) : null}
<Typography variant="h1" className="max-w-3xl"> <Typography variant="h1" className="max-w-3xl">
{heading} {heading}
@@ -87,35 +117,24 @@ export function Hero({
</Typography> </Typography>
) : null} ) : null}
{visibleButtons.length > 0 ? (
<div <div
className={cn( className={cn(
"mt-10 flex flex-wrap gap-3", "mt-10 flex flex-wrap gap-3",
align === "center" && "justify-center", align === "center" && "justify-center",
)} )}
> >
{primaryCta?.label ? ( {visibleButtons.map((b, i) => (
<Link <Link
to={primaryCta.href || "#"} key={`${b.href}-${b.label}-${i}`}
className={cn( href={b.href || "#"}
"inline-flex items-center justify-center rounded-md px-6 py-3 text-sm font-medium tracking-wide transition-opacity hover:opacity-90", className={buttonClass(b.variant, isDark)}
isDark ? "bg-white text-black" : "bg-foreground text-background",
)}
> >
{primaryCta.label} {b.label}
</Link> </Link>
) : null} ))}
{secondaryCta?.label ? (
<Link
to={secondaryCta.href || "#"}
className={cn(
"inline-flex items-center justify-center rounded-md border px-6 py-3 text-sm font-medium tracking-wide transition-opacity hover:opacity-80",
isDark ? "border-white text-white" : "border-foreground text-foreground",
)}
>
{secondaryCta.label}
</Link>
) : null}
</div> </div>
) : null}
</div> </div>
</section> </section>
); );

View File

@@ -1,4 +1,4 @@
import { Link } from "react-router"; import Link from "next/link";
import { cn } from "@/lib/utils"; import { cn } from "@/lib/utils";
export type BannerProps = { export type BannerProps = {
@@ -20,7 +20,7 @@ export function Banner({ text, ctaLabel, ctaHref, tone }: BannerProps) {
<span>{text}</span> <span>{text}</span>
{ctaLabel ? ( {ctaLabel ? (
<Link <Link
to={ctaHref || "#"} href={ctaHref || "#"}
className="underline-offset-4 hover:underline" className="underline-offset-4 hover:underline"
> >
{ctaLabel} {ctaLabel}

View File

@@ -1,5 +1,6 @@
import { cn } from "@/lib/utils"; import { cn } from "@/lib/utils";
import { Typography } from "@/components/Typography"; import { Container } from "@/components/layout/Container";
import { Heading } from "@/components/Heading";
export type ImageGalleryProps = { export type ImageGalleryProps = {
tagline: string; tagline: string;
@@ -12,22 +13,16 @@ export type ImageGalleryProps = {
export function ImageGallery({ tagline, heading, subheading, layout, items }: ImageGalleryProps) { export function ImageGallery({ tagline, heading, subheading, layout, items }: ImageGalleryProps) {
return ( return (
<section className="bg-background py-20 md:py-28"> <section className="bg-background py-20 md:py-28">
<div className="container mx-auto max-w-7xl px-6"> <Container>
{(tagline || heading || subheading) && ( <Heading
<div className="mx-auto mb-12 max-w-2xl text-center"> tagline={tagline}
{tagline ? ( title={heading}
<p className="mb-3 text-xs uppercase tracking-[0.2em] text-muted-foreground"> subtitle={subheading}
{tagline} align="center"
</p> size="lg"
) : null} className="mx-auto mb-12"
{heading ? <Typography variant="h2">{heading}</Typography> : null} maxWidth="max-w-2xl"
{subheading ? ( />
<Typography variant="subtitle1" className="mt-3">
{subheading}
</Typography>
) : null}
</div>
)}
{layout === "masonry" ? ( {layout === "masonry" ? (
<div className="columns-1 gap-4 sm:columns-2 lg:columns-3"> <div className="columns-1 gap-4 sm:columns-2 lg:columns-3">
@@ -86,7 +81,7 @@ export function ImageGallery({ tagline, heading, subheading, layout, items }: Im
))} ))}
</div> </div>
)} )}
</div> </Container>
</section> </section>
); );
} }

View File

@@ -1,6 +1,9 @@
import { useState } from "react"; import { useState } from "react";
import { cn } from "@/lib/utils"; import { cn } from "@/lib/utils";
import { Typography } from "@/components/Typography"; import { Container } from "@/components/layout/Container";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Heading } from "@/components/Heading";
export type EmailProvider = "none" | "mailchimp" | "klaviyo"; export type EmailProvider = "none" | "mailchimp" | "klaviyo";
@@ -108,56 +111,72 @@ export function NewsletterCta({
const Form = ( const Form = (
<form <form
onSubmit={submit} onSubmit={submit}
className="flex w-full max-w-md items-center border-b border-foreground/30 focus-within:border-foreground" className="flex w-full max-w-md flex-col gap-3 sm:flex-row sm:items-center"
> >
<input <Input
type="email" type="email"
required required
value={email} value={email}
onChange={(e) => setEmail(e.target.value)} onChange={(e) => setEmail(e.target.value)}
placeholder="you@example.com" placeholder="Enter your email"
className="flex-1 bg-transparent py-3 text-sm placeholder:text-muted-foreground focus:outline-none" className="h-11 flex-1"
/> />
<button <Button type="submit" size="lg" disabled={submitting} className="h-11">
type="submit" {submitting ? "Joining…" : buttonLabel}
disabled={submitting} </Button>
className="ml-3 text-sm font-medium tracking-wide hover:opacity-70 disabled:opacity-40"
>
{submitting ? "…" : buttonLabel}
</button>
</form> </form>
); );
if (layout === "split") { const isStacked = layout === "stacked";
return ( return (
<section className="bg-background"> <section className="bg-background">
<div className="container mx-auto max-w-7xl px-6 py-16 md:py-24"> <Container className="py-20 md:py-28">
<div className="grid grid-cols-1 items-center gap-12 md:grid-cols-2"> <div
<div> className={cn(
"grid grid-cols-1 gap-10",
isStacked
? "mx-auto max-w-3xl items-center text-center"
: "items-center md:grid-cols-12 md:gap-16",
)}
>
{imageUrl ? ( {imageUrl ? (
<div className={cn(!isStacked && "md:col-span-7")}>
<div className="relative overflow-hidden rounded-xl bg-muted">
<img <img
src={imageUrl} src={imageUrl}
alt="" alt=""
className="aspect-[5/4] w-full rounded-md object-cover" className={cn(
"w-full object-cover transition-transform duration-700 hover:scale-105",
isStacked ? "aspect-[16/9]" : "aspect-[4/3]",
)}
/> />
) : null}
</div> </div>
<div className="flex flex-col items-start"> </div>
{tagline ? (
<p className="mb-3 text-xs uppercase tracking-[0.2em] text-muted-foreground">
{tagline}
</p>
) : null} ) : null}
<Typography variant="h2">{heading}</Typography> <div
{subheading ? ( className={cn(
<Typography variant="subtitle1" className="mt-3 max-w-md"> "flex w-full flex-col",
{subheading} isStacked ? "items-center" : "items-start md:col-span-5",
</Typography> )}
) : null} >
<div className="mt-8 w-full"> <Heading
tagline={tagline}
title={heading}
subtitle={subheading}
align={isStacked ? "center" : "left"}
size="lg"
subtitleClassName={isStacked ? "mx-auto max-w-xl" : "max-w-md"}
/>
<div
className={cn(
"mt-8 w-full",
isStacked && "flex justify-center",
)}
>
{submitted ? ( {submitted ? (
<p className="text-sm text-muted-foreground"> <p className="text-sm font-medium uppercase tracking-wide">
Thanks we'll be in touch. You're in. See you Monday at 5:30am.
</p> </p>
) : ( ) : (
Form Form
@@ -165,35 +184,7 @@ export function NewsletterCta({
</div> </div>
</div> </div>
</div> </div>
</div> </Container>
</section>
);
}
return (
<section className="bg-muted/40 py-20 md:py-28">
<div className="container mx-auto max-w-2xl px-6 text-center">
{tagline ? (
<p className="mb-3 text-xs uppercase tracking-[0.2em] text-muted-foreground">
{tagline}
</p>
) : null}
<Typography variant="h2">{heading}</Typography>
{subheading ? (
<Typography variant="subtitle1" className="mt-3">
{subheading}
</Typography>
) : null}
<div className={cn("mx-auto mt-10 flex w-full max-w-md justify-center")}>
{submitted ? (
<p className="text-sm text-muted-foreground">
Thanks — we'll be in touch.
</p>
) : (
Form
)}
</div>
</div>
</section> </section>
); );
} }

View File

@@ -0,0 +1,21 @@
import * as React from "react";
import { cn } from "@/lib/utils";
export type ContainerProps = React.HTMLAttributes<HTMLElement> & {
as?: React.ElementType;
};
export function Container({
as: Comp = "div",
className,
style,
...props
}: ContainerProps) {
return (
<Comp
className={cn("mx-auto w-full px-6", className)}
style={{ maxWidth: "var(--container-max-width, 80rem)", ...style }}
{...props}
/>
);
}

View File

@@ -1,3 +1,6 @@
import { Container } from "@/components/layout/Container";
import { Typography } from "@/components/Typography";
export type LogosProps = { export type LogosProps = {
tagline: string; tagline: string;
items: Array<{ src: string; alt: string }>; items: Array<{ src: string; alt: string }>;
@@ -7,11 +10,11 @@ export type LogosProps = {
export function Logos({ tagline, items, layout }: LogosProps) { export function Logos({ tagline, items, layout }: LogosProps) {
return ( return (
<section className="border-y border-border bg-muted/40 py-12"> <section className="border-y border-border bg-muted/40 py-12">
<div className="container mx-auto max-w-7xl px-6"> <Container>
{tagline ? ( {tagline ? (
<p className="mb-8 text-center text-xs uppercase tracking-[0.2em] text-muted-foreground"> <Typography variant="caption" className="mb-8 text-center">
{tagline} {tagline}
</p> </Typography>
) : null} ) : null}
{layout === "marquee" ? ( {layout === "marquee" ? (
<div className="overflow-hidden"> <div className="overflow-hidden">
@@ -38,7 +41,7 @@ export function Logos({ tagline, items, layout }: LogosProps) {
))} ))}
</div> </div>
)} )}
</div> </Container>
</section> </section>
); );
} }

View File

@@ -24,8 +24,8 @@ export const navigationEditor: ComponentConfig<NavigationProps> = {
tone: "default", tone: "default",
}, },
fields: { fields: {
brand: { label: "Brand", type: "text", contentEditable: true },
logo: { label: "Logo", ...imageField({ adapter: frontendAiMediaAdapter }) }, logo: { label: "Logo", ...imageField({ adapter: frontendAiMediaAdapter }) },
brand: { label: "Logo Alt", type: "text", contentEditable: true },
links: { links: {
label: "Links", label: "Links",
type: "array", type: "array",

View File

@@ -1,8 +1,10 @@
import { Menu as MenuIcon, ShoppingBag, Search } from "lucide-react"; import { Menu as MenuIcon, ShoppingBag, Search } from "lucide-react";
import { useState } from "react"; import { useState } from "react";
import { Link } from "react-router"; import Link from "next/link";
import { useShopifyCart } from "@/hooks/use-shopify-cart"; import { useShopifyCart } from "@/hooks/use-shopify-cart";
import { Sheet, SheetContent, SheetHeader, SheetTitle } from "@/components/ui/sheet"; import { Sheet, SheetContent, SheetHeader, SheetTitle } from "@/components/ui/sheet";
import { Container } from "@/components/layout/Container";
import { Typography } from "@/components/Typography";
import { cn } from "@/lib/utils"; import { cn } from "@/lib/utils";
export type NavigationProps = { export type NavigationProps = {
@@ -49,12 +51,8 @@ export function Navigation({
toneClass[tone], toneClass[tone],
)} )}
> >
<div className="container mx-auto flex h-16 max-w-7xl items-center justify-between px-6 md:h-20"> <Container className="flex h-16 items-center justify-between md:h-20">
<Link <Link href="/" className="inline-flex items-center">
to="/"
className="inline-flex items-center font-semibold tracking-tight"
style={{ fontSize: "1.125rem", letterSpacing: "0.02em" }}
>
{logo ? ( {logo ? (
<img <img
src={logo} src={logo}
@@ -62,7 +60,9 @@ export function Navigation({
className="h-8 w-auto object-contain" className="h-8 w-auto object-contain"
/> />
) : ( ) : (
brand || "Brand Logo" <Typography variant="h3" as="span">
{brand || "Brand Logo"}
</Typography>
)} )}
</Link> </Link>
@@ -70,7 +70,7 @@ export function Navigation({
{links.map((l) => ( {links.map((l) => (
<Link <Link
key={l.href + l.label} key={l.href + l.label}
to={l.href} href={l.href}
className="text-sm tracking-wide opacity-80 transition-opacity hover:opacity-100" className="text-sm tracking-wide opacity-80 transition-opacity hover:opacity-100"
> >
{l.label} {l.label}
@@ -81,7 +81,7 @@ export function Navigation({
<div className="flex items-center gap-1"> <div className="flex items-center gap-1">
{showSearch === "yes" && ( {showSearch === "yes" && (
<Link <Link
to="/search" href="/search"
aria-label="Search" aria-label="Search"
className="hidden h-10 w-10 items-center justify-center rounded-full transition-colors hover:bg-foreground/5 md:inline-flex" className="hidden h-10 w-10 items-center justify-center rounded-full transition-colors hover:bg-foreground/5 md:inline-flex"
> >
@@ -110,7 +110,7 @@ export function Navigation({
<MenuIcon size={20} strokeWidth={1.5} /> <MenuIcon size={20} strokeWidth={1.5} />
</button> </button>
</div> </div>
</div> </Container>
</header> </header>
</div> </div>
@@ -124,7 +124,7 @@ export function Navigation({
{links.map((l) => ( {links.map((l) => (
<Link <Link
key={l.href + l.label} key={l.href + l.label}
to={l.href} href={l.href}
className="rounded-md px-3 py-3 text-base hover:bg-muted" className="rounded-md px-3 py-3 text-base hover:bg-muted"
> >
{l.label} {l.label}

View File

@@ -1,6 +1,6 @@
import { useState } from "react"; import { useState } from "react";
import { ArrowLeft, ArrowRight } from "lucide-react"; import { ArrowLeft, ArrowRight } from "lucide-react";
import { Typography } from "@/components/Typography"; import { Heading } from "@/components/Heading";
export type TestimonialsProps = { export type TestimonialsProps = {
tagline: string; tagline: string;
@@ -21,15 +21,26 @@ export function Testimonials({ tagline, heading, items }: TestimonialsProps) {
return ( return (
<section className="bg-muted/40 py-20 md:py-28"> <section className="bg-muted/40 py-20 md:py-28">
<div className="container mx-auto max-w-4xl px-6 text-center"> <div className="container mx-auto max-w-4xl px-6 text-center">
{tagline ? ( <Heading
<p className="mb-3 text-xs uppercase tracking-[0.2em] text-muted-foreground"> tagline={tagline}
{tagline} title={heading}
</p> align="center"
) : null} size="lg"
{heading ? <Typography variant="h2">{heading}</Typography> : null} />
{item ? ( {item ? (
<figure className="mx-auto mt-12 flex max-w-2xl flex-col items-center"> <div className="relative mt-12">
{total > 1 ? (
<button
onClick={() => setI((p) => (p - 1 + total) % total)}
className="absolute left-0 top-1/2 hidden -translate-y-1/2 items-center justify-center rounded-full border h-10 w-10 hover:bg-background md:inline-flex"
aria-label="Previous"
>
<ArrowLeft size={16} />
</button>
) : null}
<figure className="mx-auto flex max-w-2xl flex-col items-center px-12 md:px-16">
<blockquote <blockquote
className="text-balance text-foreground" className="text-balance text-foreground"
style={{ fontSize: "clamp(1.25rem, 2.4vw, 1.75rem)", lineHeight: 1.4 }} style={{ fontSize: "clamp(1.25rem, 2.4vw, 1.75rem)", lineHeight: 1.4 }}
@@ -52,23 +63,29 @@ export function Testimonials({ tagline, heading, items }: TestimonialsProps) {
</div> </div>
</figcaption> </figcaption>
</figure> </figure>
{total > 1 ? (
<button
onClick={() => setI((p) => (p + 1) % total)}
className="absolute right-0 top-1/2 hidden -translate-y-1/2 items-center justify-center rounded-full border h-10 w-10 hover:bg-background md:inline-flex"
aria-label="Next"
>
<ArrowRight size={16} />
</button>
) : null} ) : null}
{total > 1 ? ( {total > 1 ? (
<div className="mt-10 flex items-center justify-center gap-3"> <div className="mt-8 flex items-center justify-center gap-3 md:hidden">
<button <button
onClick={() => setI((p) => (p - 1 + total) % total)} onClick={() => setI((p) => (p - 1 + total) % total)}
className="inline-flex h-10 w-10 items-center justify-center rounded-full border border-border hover:bg-background" className="inline-flex h-10 w-10 items-center justify-center rounded-full border hover:bg-background"
aria-label="Previous" aria-label="Previous"
> >
<ArrowLeft size={16} /> <ArrowLeft size={16} />
</button> </button>
<span className="text-xs tabular-nums text-muted-foreground">
{i + 1} / {total}
</span>
<button <button
onClick={() => setI((p) => (p + 1) % total)} onClick={() => setI((p) => (p + 1) % total)}
className="inline-flex h-10 w-10 items-center justify-center rounded-full border border-border hover:bg-background" className="inline-flex h-10 w-10 items-center justify-center rounded-full border hover:bg-background"
aria-label="Next" aria-label="Next"
> >
<ArrowRight size={16} /> <ArrowRight size={16} />
@@ -76,6 +93,8 @@ export function Testimonials({ tagline, heading, items }: TestimonialsProps) {
</div> </div>
) : null} ) : null}
</div> </div>
) : null}
</div>
</section> </section>
); );
} }

View File

@@ -5,7 +5,7 @@ import { cva, type VariantProps } from "class-variance-authority";
import { cn } from "@/lib/utils"; import { cn } from "@/lib/utils";
const buttonVariants = cva( const buttonVariants = cva(
"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-[var(--radius-button)] text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:ring-2 focus-visible:ring-ring", "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:ring-2 focus-visible:ring-ring",
{ {
variants: { variants: {
variant: { variant: {

108
config/configs.ts Normal file
View File

@@ -0,0 +1,108 @@
import {
createFieldShopifyProduct,
createFieldShopifyCollection,
} from "@reacteditor/field-shopify";
import { navigationEditor } from "@/components/navigation/navigation.editor";
import { footerEditor } from "@/components/footer/footer.editor";
import { heroEditor } from "@/components/hero/hero.editor";
import { bannerEditor } from "@/components/landing/banner.editor";
import { createFeaturedProductEditor } from "@/components/commerce/featured-product.editor";
import { createProductsGridEditor } from "@/components/commerce/products-grid.editor";
import { createProductsCarouselEditor } from "@/components/commerce/products-carousel.editor";
import { collectionGridEditor } from "@/components/commerce/collection-grid.editor";
import { createCollectionEditor } from "@/components/commerce/collection.editor";
import { createProductDetailsEditor } from "@/components/commerce/product-details.editor";
import { createRecommendedProductsEditor } from "@/components/commerce/recommended-products.editor";
import { searchProductsEditor } from "@/components/commerce/search-products.editor";
import { featuresEditor } from "@/components/features/features.editor";
import { testimonialsEditor } from "@/components/testimonials/testimonials.editor";
import { imageGalleryEditor } from "@/components/landing/image-gallery.editor";
import { newsletterCtaEditor } from "@/components/landing/newsletter-cta.editor";
import { logosEditor } from "@/components/logos/logos.editor";
import { ctaEditor } from "@/components/cta/cta.editor";
import { faqEditor } from "@/components/faq/faq.editor";
import Root from "@/config/root";
import type { UserConfig } from "@/config/types";
const SHOPIFY_DOMAIN =
process.env.NEXT_PUBLIC_SHOPIFY_DOMAIN ?? "mock.shop";
const STOREFRONT_TOKEN =
process.env.NEXT_PUBLIC_SHOPIFY_STOREFRONT_ACCESS_TOKEN ?? "";
const productField = createFieldShopifyProduct({
storeDomain: SHOPIFY_DOMAIN,
storefrontAccessToken: STOREFRONT_TOKEN || undefined,
}) as any;
const collectionField = createFieldShopifyCollection({
storeDomain: SHOPIFY_DOMAIN,
storefrontAccessToken: STOREFRONT_TOKEN || undefined,
}) as any;
const categories = {
navigation: { title: "Navigation" },
hero: { title: "Hero & Banners" },
commerce: { title: "Commerce" },
content: { title: "Content" },
footer: { title: "Footer" },
};
const sharedComponents = {
navigation: navigationEditor,
footer: footerEditor,
};
export const homeConfig: UserConfig = {
root: Root,
categories,
components: {
...sharedComponents,
hero: heroEditor,
banner: bannerEditor,
"featured-product": createFeaturedProductEditor({ productField }),
"products-grid": createProductsGridEditor({ collectionField }),
"products-carousel": createProductsCarouselEditor({ collectionField }),
"collection-grid": collectionGridEditor,
features: featuresEditor,
testimonials: testimonialsEditor,
"image-gallery": imageGalleryEditor,
"newsletter-cta": newsletterCtaEditor,
logos: logosEditor,
cta: ctaEditor,
faq: faqEditor,
} as any,
};
export const productConfig: UserConfig = {
root: Root,
categories,
components: {
...sharedComponents,
"product-details": createProductDetailsEditor({ productField }),
"recommended-products": createRecommendedProductsEditor({ productField }),
"products-carousel": createProductsCarouselEditor({ collectionField }),
} as any,
};
export const collectionsConfig: UserConfig = {
root: Root,
categories,
components: {
...sharedComponents,
collection: createCollectionEditor({ collectionField }),
} as any,
};
export const searchConfig: UserConfig = {
root: Root,
categories,
components: {
...sharedComponents,
"search-products": searchProductsEditor,
} as any,
};

View File

@@ -22,6 +22,7 @@ export const Root: RootConfig<{
defaultProps: { defaultProps: {
title: "Untitled", title: "Untitled",
headerFont: "Inter", headerFont: "Inter",
headerFontWeight: "600",
bodyFont: "Inter", bodyFont: "Inter",
// Hex defaults so the color picker reads them and any non-picker // Hex defaults so the color picker reads them and any non-picker
// input (typed hex, AI-set value, etc.) is round-trip compatible. // input (typed hex, AI-set value, etc.) is round-trip compatible.
@@ -32,15 +33,27 @@ export const Root: RootConfig<{
fgColor: "#0a0a0a", fgColor: "#0a0a0a",
mutedColor: "#f5f5f5", mutedColor: "#f5f5f5",
radius: "md", radius: "md",
buttonRadius: "md",
shadow: "sm", shadow: "sm",
maxWidth: "xl", maxWidth: "lg",
}, },
fields: { fields: {
title: { label: "Page title", type: "text" }, title: { label: "Page title", type: "text" },
description: { label: "Description", type: "textarea" }, description: { label: "Description", type: "textarea" },
ogImage: { label: "OG image", ...imageField({ adapter: frontendAiMediaAdapter }) }, ogImage: { label: "OG image", ...imageField({ adapter: frontendAiMediaAdapter }) },
headerFont: { label: "Header font", ...headerFontField }, headerFont: { label: "Header font", ...headerFontField },
headerFontWeight: {
label: "Header font weight",
type: "select",
options: [
{ label: "300 — Light", value: "300" },
{ label: "400 — Regular", value: "400" },
{ label: "500 — Medium", value: "500" },
{ label: "600 — Semibold", value: "600" },
{ label: "700 — Bold", value: "700" },
{ label: "800 — Extrabold", value: "800" },
{ label: "900 — Black", value: "900" },
],
},
bodyFont: { label: "Body font", ...bodyFontField }, bodyFont: { label: "Body font", ...bodyFontField },
primaryColor: { label: "Primary color", type: "color", placeholder: "#0a0a0a" }, primaryColor: { label: "Primary color", type: "color", placeholder: "#0a0a0a" },
secondaryColor: { label: "Secondary color", type: "color", placeholder: "#64748B" }, secondaryColor: { label: "Secondary color", type: "color", placeholder: "#64748B" },
@@ -59,17 +72,6 @@ export const Root: RootConfig<{
{ label: "Extra large", value: "xl" }, { label: "Extra large", value: "xl" },
], ],
}, },
buttonRadius: {
label: "Button radius",
type: "select",
options: [
{ label: "None (square)", value: "none" },
{ label: "Small", value: "sm" },
{ label: "Medium", value: "md" },
{ label: "Large", value: "lg" },
{ label: "Extra large", value: "xl" },
],
},
shadow: { shadow: {
label: "Shadow", label: "Shadow",
type: "select", type: "select",
@@ -89,7 +91,6 @@ export const Root: RootConfig<{
{ label: "Medium", value: "md" }, { label: "Medium", value: "md" },
{ label: "Large", value: "lg" }, { label: "Large", value: "lg" },
{ label: "Extra large", value: "xl" }, { label: "Extra large", value: "xl" },
{ label: "2X large", value: "2xl" },
{ label: "Full bleed", value: "full" }, { label: "Full bleed", value: "full" },
], ],
}, },
@@ -97,6 +98,7 @@ export const Root: RootConfig<{
render: ({ render: ({
children, children,
headerFont, headerFont,
headerFontWeight,
bodyFont, bodyFont,
primaryColor, primaryColor,
secondaryColor, secondaryColor,
@@ -105,12 +107,13 @@ export const Root: RootConfig<{
fgColor, fgColor,
mutedColor, mutedColor,
radius, radius,
buttonRadius,
shadow, shadow,
maxWidth,
}) => { }) => {
return ( return (
<ThemeProvider <ThemeProvider
headerFont={headerFont} headerFont={headerFont}
headerFontWeight={headerFontWeight}
bodyFont={bodyFont} bodyFont={bodyFont}
primaryColor={primaryColor} primaryColor={primaryColor}
secondaryColor={secondaryColor} secondaryColor={secondaryColor}
@@ -119,8 +122,8 @@ export const Root: RootConfig<{
fgColor={fgColor} fgColor={fgColor}
mutedColor={mutedColor} mutedColor={mutedColor}
radius={radius} radius={radius}
buttonRadius={buttonRadius}
shadow={shadow} shadow={shadow}
maxWidth={maxWidth}
> >
{children} {children}
</ThemeProvider> </ThemeProvider>

View File

@@ -1,21 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Shopify Storefront</title>
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<link
rel="stylesheet"
href="https://esm.sh/@reacteditor/core@0.0.10/dist/index.css"
/>
<link
rel="stylesheet"
href="https://esm.sh/@reacteditor/plugin-ai@0.0.3/styles.css"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>

6
next-env.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import "./.next/dev/types/routes.d.ts";
// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

10
next.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
reactStrictMode: true,
typescript: {
ignoreBuildErrors: true,
},
};
export default nextConfig;

View File

@@ -2,16 +2,13 @@
"name": "react-editor-demo", "name": "react-editor-demo",
"version": "1.0.0", "version": "1.0.0",
"private": true, "private": true,
"type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "next dev",
"build": "vite build", "build": "next build",
"preview": "vite preview", "start": "next start",
"start": "vite preview" "lint": "next lint"
}, },
"dependencies": { "dependencies": {
"@ai-sdk/anthropic": "^3.0.74",
"@ai-sdk/react": "^3.0.177",
"@base-ui/react": "^1.4.1", "@base-ui/react": "^1.4.1",
"@fontsource-variable/geist": "^5.2.8", "@fontsource-variable/geist": "^5.2.8",
"@radix-ui/react-accordion": "^1.2.11", "@radix-ui/react-accordion": "^1.2.11",
@@ -28,23 +25,23 @@
"@radix-ui/react-switch": "^1.2.5", "@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12", "@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.7", "@radix-ui/react-tooltip": "^1.2.7",
"@reacteditor/core": "0.0.17", "@reacteditor/core": "0.0.30",
"@reacteditor/field-google-fonts": "^0.0.1", "@reacteditor/field-google-fonts": "^0.0.3",
"@reacteditor/field-shopify": "^0.0.1", "@reacteditor/field-shopify": "^0.0.2",
"@reacteditor/plugin-ai": "^0.0.4", "@reacteditor/plugin-ai": "^0.0.7",
"@reacteditor/plugin-media": "^0.0.1", "@reacteditor/plugin-media": "^0.0.4",
"@reacteditor/plugin-tailwind-cdn": "^0.0.2", "@reacteditor/plugin-tailwind-cdn": "^0.0.3",
"@shopify/storefront-api-client": "^1.0.0", "@shopify/storefront-api-client": "^1.0.0",
"@tailwindcss/postcss": "^4.1.11", "@tailwindcss/postcss": "^4.1.11",
"ai": "^6.0.175",
"class-variance-authority": "^0.7.1", "class-variance-authority": "^0.7.1",
"clsx": "^2.1.1", "clsx": "^2.1.1",
"embla-carousel-react": "^8.6.0", "embla-carousel-react": "^8.6.0",
"framer-motion": "^12.16.0", "framer-motion": "^12.16.0",
"lucide-react": "^1.14.0", "lucide-react": "^1.14.0",
"next": "16.2.6",
"react": "^19.1.1", "react": "^19.1.1",
"react-dom": "^19.1.1", "react-dom": "^19.1.1",
"react-router": "^7.0.0", "react-router": "^7",
"tailwind-merge": "^3.5.0", "tailwind-merge": "^3.5.0",
"tailwindcss": "^4.1.11", "tailwindcss": "^4.1.11",
"tw-animate-css": "^1.4.0", "tw-animate-css": "^1.4.0",
@@ -55,8 +52,6 @@
"@types/node": "^22.0.0", "@types/node": "^22.0.0",
"@types/react": "^19.0.0", "@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0", "@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4", "typescript": "^5.5.4"
"typescript": "^5.5.4",
"vite": "^6.0.0"
} }
} }

View File

@@ -1,90 +0,0 @@
import {
createFieldShopifyProduct,
createFieldShopifyCollection,
} from "@reacteditor/field-shopify";
import { navigationEditor } from "@/components/navigation/navigation.editor";
import { footerEditor } from "@/components/footer/footer.editor";
import { heroEditor } from "@/components/hero/hero.editor";
import { bannerEditor } from "@/components/landing/banner.editor";
import { createFeaturedProductEditor } from "@/components/commerce/featured-product.editor";
import { createProductsGridEditor } from "@/components/commerce/products-grid.editor";
import { createProductsCarouselEditor } from "@/components/commerce/products-carousel.editor";
import { collectionGridEditor } from "@/components/commerce/collection-grid.editor";
import { createCollectionEditor } from "@/components/commerce/collection.editor";
import { createProductDetailsEditor } from "@/components/commerce/product-details.editor";
import { createRecommendedProductsEditor } from "@/components/commerce/recommended-products.editor";
import { searchProductsEditor } from "@/components/commerce/search-products.editor";
import { featuresEditor } from "@/components/features/features.editor";
import { testimonialsEditor } from "@/components/testimonials/testimonials.editor";
import { imageGalleryEditor } from "@/components/landing/image-gallery.editor";
import { newsletterCtaEditor } from "@/components/landing/newsletter-cta.editor";
import { logosEditor } from "@/components/logos/logos.editor";
import { ctaEditor } from "@/components/cta/cta.editor";
import { faqEditor } from "@/components/faq/faq.editor";
import Root from "@/config/root";
import type { UserConfig } from "@/config/types";
import { initialData } from "@/config/initial-data";
export type CreateConfigOptions = {
domain: string;
token?: string | null;
};
export function createConfig({ domain, token }: CreateConfigOptions): UserConfig {
const productField = createFieldShopifyProduct({
storeDomain: domain,
storefrontAccessToken: token ?? undefined,
}) as any;
const collectionField = createFieldShopifyCollection({
storeDomain: domain,
storefrontAccessToken: token ?? undefined,
}) as any;
return {
root: Root,
categories: {
navigation: { title: "Navigation" },
hero: { title: "Hero & Banners" },
commerce: { title: "Commerce" },
content: { title: "Content" },
footer: { title: "Footer" },
},
components: {
navigation: navigationEditor,
hero: heroEditor,
banner: bannerEditor,
"featured-product": createFeaturedProductEditor({ productField }),
"products-grid": createProductsGridEditor({ collectionField }),
"products-carousel": createProductsCarouselEditor({ collectionField }),
"collection-grid": collectionGridEditor,
collection: createCollectionEditor({ collectionField }),
"product-details": createProductDetailsEditor({ productField }),
"recommended-products": createRecommendedProductsEditor({ productField }),
"search-products": searchProductsEditor,
features: featuresEditor,
testimonials: testimonialsEditor,
"image-gallery": imageGalleryEditor,
"newsletter-cta": newsletterCtaEditor,
logos: logosEditor,
cta: ctaEditor,
faq: faqEditor,
footer: footerEditor,
} as any,
};
}
function toBase64(s: string): string {
if (typeof btoa === "function") return btoa(unescape(encodeURIComponent(s)));
return Buffer.from(s, "utf8").toString("base64");
}
export const componentKey = toBase64(
`commerce-redesign-${JSON.stringify({ initialData })}`,
);
export default createConfig;

View File

@@ -5,7 +5,7 @@ import type {
} from "@reacteditor/plugin-media"; } from "@reacteditor/plugin-media";
const MEDIA_BASE = "https://www.frontend-ai.com"; const MEDIA_BASE = "https://www.frontend-ai.com";
const MEDIA_API_KEY = (import.meta.env.VITE_API_KEY as string | undefined) ?? ""; const MEDIA_API_KEY = process.env.NEXT_PUBLIC_API_KEY ?? "";
export const frontendAiMediaAdapter: MediaAdapter = { export const frontendAiMediaAdapter: MediaAdapter = {
fetchList: async ({ query, cursor, signal }) => { fetchList: async ({ query, cursor, signal }) => {

View File

@@ -1,106 +0,0 @@
import { useCallback, useMemo, useRef, useState } from "react";
import { App as ReactEditorApp, createUseEditor } from "@reacteditor/core";
import "@reacteditor/core/react-editor.css";
import createTailwindCdnPlugin from "@reacteditor/plugin-tailwind-cdn";
import { mediaPlugin } from "@reacteditor/plugin-media";
import "@reacteditor/plugin-media/styles.css";
import { aiPlugin } from "@reacteditor/plugin-ai";
import "@reacteditor/plugin-ai/styles.css";
import { createConfig } from "@/react-editor.config";
import { ShopifyProvider } from "@/contexts/shopify-context";
import { frontendAiMediaAdapter } from "@/services/media-adapter";
import { Loader } from "@/components/ui/loader";
import schemaJson from "../app.schema.json";
const AI_API_KEY = (import.meta.env.VITE_API_KEY as string | undefined) ?? "";
type Pages = Record<string, { root: any; content: any[] }>;
const useEditor = createUseEditor();
const SHOPIFY_DOMAIN =
(import.meta.env.VITE_SHOPIFY_DOMAIN as string | undefined) ?? "mock.shop";
const STOREFRONT_TOKEN =
(import.meta.env.VITE_SHOPIFY_STOREFRONT_ACCESS_TOKEN as
| string
| undefined) ?? "";
function readPathname() {
if (typeof window === "undefined") return "/";
const p = window.location.pathname;
return p === "" ? "/" : p;
}
export default function App() {
const pages = schemaJson as Pages;
const [currentPath, setCurrentPath] = useState<string>(readPathname);
const [isPublishing, setIsPublishing] = useState(false);
const latestDataRef = useRef<any>(null);
const handleChange = useCallback((data: any) => {
latestDataRef.current = data;
}, []);
const config = useMemo(
() =>
createConfig({
domain: SHOPIFY_DOMAIN,
token: STOREFRONT_TOKEN || null,
}),
[],
);
const handlePublish = useCallback((data: any, route?: string) => {
console.log(data);
setIsPublishing(true);
if (typeof window !== "undefined" && window.parent !== window) {
window.parent.postMessage(
{ type: "PUBLISH", data: { data, route } },
"*",
);
}
setTimeout(() => setIsPublishing(false), 1000);
}, []);
const plugins = useMemo(
() => [createTailwindCdnPlugin()],
[pages, currentPath, handlePublish],
);
return (
<div className="h-screen w-screen">
<ShopifyProvider domain={SHOPIFY_DOMAIN} token={STOREFRONT_TOKEN}>
<ReactEditorApp
config={config as any}
pages={pages as any}
currentPath={currentPath}
plugins={plugins}
iframe={{ enabled: true }}
ui={{
leftSideBarVisible: false,
}}
onPublish={handlePublish}
onChange={handleChange}
overrides={{
headerActions: () => {
const appState = useEditor((s: any) => s.appState);
return (
<button
type="button"
disabled={isPublishing}
onClick={() => {
handlePublish(appState.data, currentPath);
}}
className="inline-flex items-center justify-center gap-2 rounded-md bg-black px-4 py-1.5 text-sm font-medium text-white hover:bg-gray-800 disabled:cursor-not-allowed disabled:opacity-60"
>
{isPublishing && <Loader size={14} />}
{isPublishing ? "Saving..." : "Save"}
</button>
);
},
}}
/>
</ShopifyProvider>
</div>
);
}

View File

@@ -1,10 +0,0 @@
import React from "react";
import { createRoot } from "react-dom/client";
import App from "./App";
import "./globals.css";
createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);

10
src/vite-env.d.ts vendored
View File

@@ -1,10 +0,0 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_SHOPIFY_DOMAIN?: string;
readonly VITE_SHOPIFY_STOREFRONT_ACCESS_TOKEN?: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}

View File

@@ -1,29 +1,46 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ES2022", "target": "ES2022",
"useDefineForClassFields": true, "lib": [
"lib": ["ES2022", "DOM", "DOM.Iterable"], "ES2022",
"DOM",
"DOM.Iterable"
],
"module": "ESNext", "module": "ESNext",
"moduleResolution": "Bundler", "moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true, "resolveJsonModule": true,
"isolatedModules": true, "isolatedModules": true,
"moduleDetection": "force", "moduleDetection": "force",
"noEmit": true, "noEmit": true,
"jsx": "react-jsx", "jsx": "react-jsx",
"incremental": true,
"strict": true, "strict": true,
"skipLibCheck": true, "skipLibCheck": true,
"esModuleInterop": true, "esModuleInterop": true,
"allowJs": true, "allowJs": true,
"types": ["node", "vite/client"], "allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"types": [
"node"
],
"baseUrl": ".", "baseUrl": ".",
"paths": { "paths": {
"@/*": ["./*"], "@/*": [
"~/*": ["./*"] "./*"
],
"~/*": [
"./*"
]
},
"plugins": [
{
"name": "next"
} }
]
}, },
"include": [ "include": [
"src", "next-env.d.ts",
"app",
"api", "api",
"components", "components",
"config", "config",
@@ -33,8 +50,15 @@
"lib", "lib",
"services", "services",
"vendor", "vendor",
"react-editor.config.tsx", "next.config.ts",
"vite.config.ts" "**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
], ],
"exclude": ["node_modules", "dist"] "exclude": [
"node_modules",
"dist",
".next"
]
} }

1
tsconfig.tsbuildinfo Normal file

File diff suppressed because one or more lines are too long

View File

@@ -1,23 +0,0 @@
import { defineConfig, loadEnv } from "vite";
import react from "@vitejs/plugin-react";
import path from "node:path";
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, process.cwd(), "");
for (const k of Object.keys(env)) {
if (process.env[k] === undefined) process.env[k] = env[k];
}
return {
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "."),
"~": path.resolve(__dirname, "."),
},
},
server: {
port: 3001,
},
};
});

2235
yarn.lock

File diff suppressed because it is too large Load Diff