diff --git a/src/lib/components/FrontProductGallery.svelte b/src/lib/components/FrontProductGallery.svelte
new file mode 100644
index 0000000..3752351
--- /dev/null
+++ b/src/lib/components/FrontProductGallery.svelte
@@ -0,0 +1,65 @@
+
+
+
+
{title}
+
+ {#each products as product}
+
+ {/each}
+
+
+
+
+
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte
index ebf4353..f6233b4 100644
--- a/src/routes/+page.svelte
+++ b/src/routes/+page.svelte
@@ -3,7 +3,7 @@
import FrontText from '$lib/components/FrontText.svelte';
import FrontTextImage from '$lib/components/FrontTextImage.svelte';
import FrontTextImageBubble from '$lib/components/FrontTextImageBubble.svelte';
- import FrontProductGallery from '$lib/components/FrontProductGallery.svelte';
+ // import FrontProductGallery from '$lib/components/FrontProductGallery.svelte';
import type IFrontTextImage from '$lib/interfaces/IFrontTextImage';
import type { IProduct } from '$lib/interfaces/IProduct';
import type IFrontText from '$lib/interfaces/IFrontText';
@@ -51,15 +51,53 @@
color: 'orange'
}
];
+
+ // const galleryProducts: IProduct[] = [
+ // {
+ // description:
+ // " - 44'' Fabric by the Yard\n - 100% Cottton\n - Fabric Care: Machine Wash Normal, No Bleach, Tumble Dry Low\n - Printed in the USA from Imported Material.",
+ // image:
+ // 'https://storage.googleapis.com/planetposen-images/2c47ed96b5e061d85f688849b998aa5e76c55c2a.jpg',
+ // name: 'Oversized Blue And Yellow Swirls',
+ // primary_color: '#E6E0DC',
+ // product_no: 11,
+ // subtext: ''
+ // },
+ // {
+ // description:
+ // "The power of cotton is an almighty force for kids attire. Our cotton spandex interlock is a thicker fabric that's durable and naturally comfortable. Plus with breathability and slight stretch, children's tops and dresses are free-moving during play time. Choose from various designs like this dinosaur patch pattern, and you have a loving sewing project for awesome practicality and personality.\n\n - Width: 57 Inches\n - Content: 98% Cotton 2% Spandex\n - Care: Machine wash gentle cold, nonchlorine bleach, line dry, cool iron.\n - Imported",
+ // image:
+ // 'https://storage.googleapis.com/planetposen-images/838074447f08f03c4b75ac2030dcd01201c0656c.jpg',
+ // name: 'White Dinosaur Patches',
+ // primary_color: '#B1E0DC',
+ // product_no: 10,
+ // subtext: ''
+ // },
+ // {
+ // description:
+ // ' - Width: 43 inches\n - Content: 100% Cotton\n - Care: Machine wash normal cold, no bleach, tumble dry, do not iron\n - Imported',
+ // image:
+ // 'https://storage.googleapis.com/planetposen-images/aef3eb500a6b12b896b7c567b85eded6301d5c4a.jpg',
+ // name: 'Dino Camping',
+ // primary_color: '#EBB4BB',
+ // product_no: 9,
+ // subtext: 'Snuggle Flannel Fabric'
+ // }
+ // ];
-
+