@pradip1995/create-storefront-app 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -5,6 +5,11 @@ NEXT_PUBLIC_MEDUSA_BACKEND_URL={{BACKEND_URL}}
|
|
|
5
5
|
NEXT_PUBLIC_BASE_URL={{BASE_URL}}
|
|
6
6
|
NEXT_PUBLIC_DEFAULT_REGION={{DEFAULT_REGION}}
|
|
7
7
|
|
|
8
|
+
# Branding (shown in nav, hero fallbacks, promo bar)
|
|
9
|
+
# NEXT_PUBLIC_SHOP_NAME=My Shop
|
|
10
|
+
# NEXT_PUBLIC_HOME_PAGE_TITLE=Welcome to our store
|
|
11
|
+
# NEXT_PUBLIC_HOME_PAGE_DESCRIPTION=
|
|
12
|
+
|
|
8
13
|
# Payments (Razorpay test — replace for production)
|
|
9
14
|
# NEXT_PUBLIC_RAZORPAY_KEY=
|
|
10
15
|
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 600" preserveAspectRatio="xMidYMid slice">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="hero" x1="0%" y1="0%" x2="100%" y2="0%">
|
|
4
|
+
<stop offset="0%" stop-color="#dbeafe"/>
|
|
5
|
+
<stop offset="100%" stop-color="#93c5fd"/>
|
|
6
|
+
</linearGradient>
|
|
7
|
+
</defs>
|
|
8
|
+
<rect width="1440" height="600" fill="url(#hero)"/>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 960" preserveAspectRatio="xMidYMid slice">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="hero-m" x1="0%" y1="0%" x2="0%" y2="100%">
|
|
4
|
+
<stop offset="0%" stop-color="#dbeafe"/>
|
|
5
|
+
<stop offset="100%" stop-color="#93c5fd"/>
|
|
6
|
+
</linearGradient>
|
|
7
|
+
</defs>
|
|
8
|
+
<rect width="750" height="960" fill="url(#hero-m)"/>
|
|
9
|
+
</svg>
|