diff --git a/.env.example b/.env.example
deleted file mode 100644
index 9ff0463db..000000000
--- a/.env.example
+++ /dev/null
@@ -1,7 +0,0 @@
-COMPANY_NAME="Vercel Inc."
-TWITTER_CREATOR="@vercel"
-TWITTER_SITE="https://nextjs.org/commerce"
-SITE_NAME="Next.js Commerce"
-SHOPIFY_REVALIDATION_SECRET=""
-SHOPIFY_STOREFRONT_ACCESS_TOKEN=""
-SHOPIFY_STORE_DOMAIN="[your-shopify-store-subdomain].myshopify.com"
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 3fbb4ab25..8345c107c 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -2,8 +2,8 @@
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"editor.codeActionsOnSave": {
- "source.fixAll": true,
- "source.organizeImports": true,
- "source.sortMembers": true
+ "source.fixAll": "explicit",
+ "source.organizeImports": "explicit",
+ "source.sortMembers": "explicit"
}
}
diff --git a/README.md b/README.md
index 981685d2b..3ea36191a 100644
--- a/README.md
+++ b/README.md
@@ -26,15 +26,6 @@ Vercel will only be actively maintaining a Shopify version [as outlined in our v
Vercel is happy to partner and work with any commerce provider to help them get a similar template up and running and listed below. Alternative providers should be able to fork this repository and swap out the `lib/shopify` file with their own implementation while leaving the rest of the template mostly unchanged.
- Shopify (this repository)
-- [BigCommerce](https://github.com/bigcommerce/nextjs-commerce) ([Demo](https://next-commerce-v2.vercel.app/))
-- [Medusa](https://github.com/medusajs/vercel-commerce) ([Demo](https://medusa-nextjs-commerce.vercel.app/))
-- [Saleor](https://github.com/saleor/nextjs-commerce) ([Demo](https://saleor-commerce.vercel.app/))
-- [Shopware](https://github.com/shopwareLabs/vercel-commerce) ([Demo](https://shopware-vercel-commerce-react.vercel.app/))
-- [Swell](https://github.com/swellstores/verswell-commerce) ([Demo](https://verswell-commerce.vercel.app/))
-- [Umbraco](https://github.com/umbraco/Umbraco.VercelCommerce.Demo) ([Demo](https://vercel-commerce-demo.umbraco.com/))
-- [Wix](https://github.com/wix/nextjs-commerce) ([Demo](https://wix-nextjs-commerce.vercel.app/))
-
-> Note: Providers, if you are looking to use similar products for your demo, you can [download these assets](https://drive.google.com/file/d/1q_bKerjrwZgHwCw0ovfUMW6He9VtepO_/view?usp=sharing).
## Integrations
@@ -61,16 +52,6 @@ pnpm dev
Your app should now be running on [localhost:3000](http://localhost:3000/).
-
- Expand if you work at Vercel and want to run locally and / or contribute
-
-1. Run `vc link`.
-1. Select the `Vercel Solutions` scope.
-1. Connect to the existing `commerce-shopify` project.
-1. Run `vc env pull` to get environment variables.
-1. Run `pnpm dev` to ensure everything is working correctly.
-
-
## Vercel, Next.js Commerce, and Shopify Integration Guide
You can use this comprehensive [integration guide](http://vercel.com/docs/integrations/shopify) with step-by-step instructions on how to configure Shopify as a headless CMS using Next.js Commerce as your headless Shopify storefront on Vercel.
diff --git a/app/favicon.ico b/app/favicon.ico
index dc7d8431e..b5c701120 100644
Binary files a/app/favicon.ico and b/app/favicon.ico differ
diff --git a/app/page.tsx b/app/page.tsx
index aefd19396..f6739d634 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -6,7 +6,7 @@ import { Suspense } from 'react';
export const runtime = 'edge';
export const metadata = {
- description: 'High-performance ecommerce store built with Next.js, Vercel, and Shopify.',
+ description: 'School Supplies Shopping',
openGraph: {
type: 'website'
}
diff --git a/app/product/layout.tsx b/app/product/layout.tsx
new file mode 100644
index 000000000..aacaaa70d
--- /dev/null
+++ b/app/product/layout.tsx
@@ -0,0 +1,12 @@
+export const metadata = {
+ title: 'Next.js',
+ description: 'Generated by Next.js'
+};
+
+export default function RootLayout({ children }: { children: React.ReactNode }) {
+ return (
+
+