detail page port

This commit is contained in:
nicwands
2026-05-29 11:22:56 -04:00
parent b85d28c142
commit e22d75c50a
65 changed files with 7006 additions and 4044 deletions

20
libs/shopify/menu.js Normal file
View File

@@ -0,0 +1,20 @@
import { gql } from 'graphql-request'
export const GET_MENU = gql`
query getMenu($handle: String!) {
menu(handle: $handle) {
id
title
items {
id
title
url
items {
id
title
url
}
}
}
}
`