Update default shopify site design

This commit is contained in:
Rami Bitar
2026-06-10 13:20:03 -04:00
parent 1fb1df8cfd
commit e4ecab1875
33 changed files with 527 additions and 2371 deletions

View File

@@ -25,17 +25,15 @@ interface CartLine {
name: string;
value: string;
}>;
image?: {
url: string;
altText?: string | null;
};
product: {
id: string;
title: string;
handle?: string;
images: {
edges: Array<{
node: {
url: string;
altText: string | null;
};
}>;
};
handle: string;
vendor?: string;
};
};
}