diff --git a/.env.example b/.env.example index 9ff0463db..292128a6a 100644 --- a/.env.example +++ b/.env.example @@ -1,7 +1,7 @@ -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" +# API specifics +NEXT_PUBLIC_FW_API_URL="https://api.staging.fourthwall.com" + +# Site specifics +NEXT_PUBLIC_FW_COLLECTION="launch" +NEXT_PUBLIC_FW_PUBLIC_TOKEN="" +NEXT_PUBLIC_FW_CHECKOUT="https://jieren-shop.staging.fourthwall.com" diff --git a/app/[page]/layout.tsx b/app/[page]/layout.tsx deleted file mode 100644 index 50614b5b1..000000000 --- a/app/[page]/layout.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import Footer from 'components/layout/footer'; - -export default function Layout({ children }: { children: React.ReactNode }) { - return ( - <> -
-
{children}
-
-