diff --git a/parfum-shop/index.html b/parfum-shop/index.html
index 45e5d3a..1813149 100644
--- a/parfum-shop/index.html
+++ b/parfum-shop/index.html
@@ -3,6 +3,12 @@
+
+
+
parfum-shop
diff --git a/parfum-shop/package-lock.json b/parfum-shop/package-lock.json
index cb70349..a5de8c5 100644
--- a/parfum-shop/package-lock.json
+++ b/parfum-shop/package-lock.json
@@ -683,9 +683,6 @@
"arm64"
],
"dev": true,
- "libc": [
- "glibc"
- ],
"license": "MIT",
"optional": true,
"os": [
@@ -703,9 +700,6 @@
"arm64"
],
"dev": true,
- "libc": [
- "musl"
- ],
"license": "MIT",
"optional": true,
"os": [
@@ -723,9 +717,6 @@
"ppc64"
],
"dev": true,
- "libc": [
- "glibc"
- ],
"license": "MIT",
"optional": true,
"os": [
@@ -743,9 +734,6 @@
"s390x"
],
"dev": true,
- "libc": [
- "glibc"
- ],
"license": "MIT",
"optional": true,
"os": [
@@ -763,9 +751,6 @@
"x64"
],
"dev": true,
- "libc": [
- "glibc"
- ],
"license": "MIT",
"optional": true,
"os": [
@@ -783,9 +768,6 @@
"x64"
],
"dev": true,
- "libc": [
- "musl"
- ],
"license": "MIT",
"optional": true,
"os": [
diff --git a/parfum-shop/src/App.css b/parfum-shop/src/App.css
index 01e7450..b128901 100644
--- a/parfum-shop/src/App.css
+++ b/parfum-shop/src/App.css
@@ -7,9 +7,9 @@ body,
#root {
margin: 0;
min-height: 100%;
- font-family: Arial, Helvetica, sans-serif;
+ font-family: "Questrial", Arial, Helvetica, sans-serif;
}
body {
background: #efefef;
-}
\ No newline at end of file
+}
diff --git a/parfum-shop/src/data/perfumes.js b/parfum-shop/src/data/perfumes.js
index aefb46d..1979807 100644
--- a/parfum-shop/src/data/perfumes.js
+++ b/parfum-shop/src/data/perfumes.js
@@ -27,7 +27,7 @@ const perfumes = [
edition: "Batch 04/24",
gallery: [
"/kalter-beton-product-image.png",
- "/kalter-beton-product-image.png",
+ "/kalter-beton-product-sample-image.png",
"/kalter-beton-product-image.png",
],
reviews: {
@@ -107,7 +107,7 @@ const perfumes = [
edition: "Batch 02/24",
gallery: [
"/nasser-marmor-product-image.png",
- "/nasser-marmor-product-image.png",
+ "/nasser-marmor-product-sample-image.png",
"/nasser-marmor-product-image.png",
],
reviews: {
@@ -187,7 +187,7 @@ const perfumes = [
edition: "Batch 03/24",
gallery: [
"/blasse-seide-product-image.png",
- "/blasse-seide-product-image.png",
+ "/blasse-seide-product-sample-image.png",
"/blasse-seide-product-image.png",
],
reviews: {
@@ -267,7 +267,7 @@ const perfumes = [
edition: "Batch 01/24",
gallery: [
"/weisse-asche-product-image.png",
- "/weisse-asche-product-image.png",
+ "/weisse-asche-product-sample-image.png",
"/weisse-asche-product-image.png",
],
reviews: {
@@ -347,7 +347,7 @@ const perfumes = [
edition: "Batch 05/24",
gallery: [
"/verbranntes-chrom-product-image.png",
- "/verbranntes-chrom-product-image.png",
+ "/verbranntes-chrom-product-sample-image.png",
"/verbranntes-chrom-product-image.png",
],
reviews: {
@@ -427,7 +427,7 @@ const perfumes = [
edition: "Batch 06/24",
gallery: [
"/schwarzes-benzin-product-image.png",
- "/schwarzes-benzin-product-image.png",
+ "/schwarzes-benzin-product-sample-image.png",
"/schwarzes-benzin-product-image.png",
],
reviews: {
diff --git a/parfum-shop/src/index.css b/parfum-shop/src/index.css
index 4af0267..c3af8fc 100644
--- a/parfum-shop/src/index.css
+++ b/parfum-shop/src/index.css
@@ -1,5 +1,5 @@
:root {
- font-family: Arial, Helvetica, sans-serif;
+ font-family: "Questrial", Arial, Helvetica, sans-serif;
color: #1f1f1f;
background: #efefef;
line-height: 1.5;
@@ -22,6 +22,7 @@ html {
body {
margin: 0;
background: #efefef;
+ font-family: inherit;
}
a {
@@ -30,4 +31,4 @@ a {
button {
font: inherit;
-}
\ No newline at end of file
+}
diff --git a/parfum-shop/src/pages/LandingPage.css b/parfum-shop/src/pages/LandingPage.css
index 373a89e..1e170b3 100644
--- a/parfum-shop/src/pages/LandingPage.css
+++ b/parfum-shop/src/pages/LandingPage.css
@@ -385,9 +385,9 @@
gap: 28px;
align-items: center;
background: #ff6a00;
- margin: 20px 20px 0;
+ margin: 5vw 0px 0;
border-radius: 0;
- padding: 40px 38px;
+ padding: 00px 0px 0px 40px;
}
.discovery-copy h2 {
@@ -435,7 +435,7 @@
position: relative;
width: 100%;
max-width: 1300px;
- height: 340px;
+ height: 50vh;
border-radius: 0;
overflow: hidden;
justify-self: end;
diff --git a/parfum-shop/src/pages/LandingPage.jsx b/parfum-shop/src/pages/LandingPage.jsx
index 9359d1d..0d83411 100644
--- a/parfum-shop/src/pages/LandingPage.jsx
+++ b/parfum-shop/src/pages/LandingPage.jsx
@@ -388,7 +388,7 @@ function LandingPage() {
-

+