commit e3d5e75299b7f1a8f3ba31bb289ecb99ff016978 Author: Rami Bitar Date: Fri Jul 31 22:12:19 2026 -0400 Initial commit: Shopify storefront Next.js template Next.js 16 + React 19 storefront template with Shopify Storefront API integration, Tailwind v4, and shadcn/ui components. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_0111qSr3KopyGRsJ6LznR1xZ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f69c3e6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +node_modules/* +.next +next-env.d.ts +.yarn/install-state.gz diff --git a/app.globals.json b/app.globals.json new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/app.globals.json @@ -0,0 +1 @@ +{} diff --git a/app/collections/[handle]/page.tsx b/app/collections/[handle]/page.tsx new file mode 100644 index 0000000..a2a3ba2 --- /dev/null +++ b/app/collections/[handle]/page.tsx @@ -0,0 +1,26 @@ +import Header from '@/components/shopify/header'; +import Footer from '@/components/shopify/footer'; +import CollectionDetail from '@/components/shopify/collection-detail'; + +export default function Page() { + return ( + <> +
+ +