Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 88b1fe36af | |||
| e690ace6f1 | |||
| fa9f4f1d9a | |||
| 231da016bb | |||
| 5a6354f407 | |||
| 467c0d3cf5 | |||
| a2ee3f797e | |||
| 585d713eb5 | |||
| c5172b6873 | |||
| 440d66ecff |
@@ -18,7 +18,7 @@ export default function LandingPage() {
|
|||||||
borderRadius="pill"
|
borderRadius="pill"
|
||||||
contentWidth="mediumSmall"
|
contentWidth="mediumSmall"
|
||||||
sizing="largeSmallSizeMediumTitles"
|
sizing="largeSmallSizeMediumTitles"
|
||||||
background="none"
|
background="fluid"
|
||||||
cardStyle="gradient-bordered"
|
cardStyle="gradient-bordered"
|
||||||
primaryButtonStyle="primary-glow"
|
primaryButtonStyle="primary-glow"
|
||||||
secondaryButtonStyle="layered"
|
secondaryButtonStyle="layered"
|
||||||
@@ -29,21 +29,13 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "home"},
|
||||||
id: "home",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Über uns",
|
name: "Über uns", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Getränke",
|
name: "Getränke", id: "products"},
|
||||||
id: "products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Kontakt",
|
name: "Kontakt", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Hossein's Getränke"
|
brandName="Hossein's Getränke"
|
||||||
/>
|
/>
|
||||||
@@ -55,9 +47,7 @@ export default function LandingPage() {
|
|||||||
description="Dein zuverlässiger Lieferdienst für Softdrinks, Säfte und Bier in der Region. Einfach bestellen, wir liefern schnell und direkt an deine Tür."
|
description="Dein zuverlässiger Lieferdienst für Softdrinks, Säfte und Bier in der Region. Einfach bestellen, wir liefern schnell und direkt an deine Tür."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Jetzt bestellen",
|
text: "Jetzt bestellen", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bik3jzcnV9GSQo3jolepI9P7mM/uploaded-1774979301217-trf0nkar.jpg"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bik3jzcnV9GSQo3jolepI9P7mM/uploaded-1774979301217-trf0nkar.jpg"
|
||||||
imageAlt="Frische Getränke Lieferung"
|
imageAlt="Frische Getränke Lieferung"
|
||||||
@@ -83,26 +73,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Softdrinks", price: "ab 2,50 €", variant: "verschiedene Sorten", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bik3jzcnV9GSQo3jolepI9P7mM/uploaded-1774979501480-ug7ngip8.jpg"},
|
||||||
name: "Softdrinks",
|
|
||||||
price: "ab 2,50 €",
|
|
||||||
variant: "verschiedene Sorten",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bik3jzcnV9GSQo3jolepI9P7mM/uploaded-1774979501480-ug7ngip8.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Natürliche Säfte", price: "ab 1,49 €", variant: "direkt gepresst", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bik3jzcnV9GSQo3jolepI9P7mM/uploaded-1774979625478-v9yrtp09.jpg"},
|
||||||
name: "Natürliche Säfte",
|
|
||||||
price: "ab 1,49 €",
|
|
||||||
variant: "direkt gepresst",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bik3jzcnV9GSQo3jolepI9P7mM/uploaded-1774979625478-v9yrtp09.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Frisches Bier", price: "ab 12,99 €", variant: "regional & international", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bik3jzcnV9GSQo3jolepI9P7mM/uploaded-1774979678208-jdvnxmk1.jpg"},
|
||||||
name: "Frisches Bier",
|
|
||||||
price: "ab 12,99 €",
|
|
||||||
variant: "regional & international",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bik3jzcnV9GSQo3jolepI9P7mM/uploaded-1774979678208-jdvnxmk1.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Unsere Auswahl"
|
title="Unsere Auswahl"
|
||||||
description="Von erfrischenden Softdrinks über gesunde Säfte bis hin zu gekühltem Bier – hier findest du alles, was du brauchst."
|
description="Von erfrischenden Softdrinks über gesunde Säfte bis hin zu gekühltem Bier – hier findest du alles, was du brauchst."
|
||||||
@@ -115,20 +90,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "q1",
|
id: "q1", title: "Wie schnell liefert ihr?", content: "Normalerweise liefern wir innerhalb von 60 Minuten direkt an deine Haustür."},
|
||||||
title: "Wie schnell liefert ihr?",
|
|
||||||
content: "Normalerweise liefern wir innerhalb von 60 Minuten direkt an deine Haustür.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q2",
|
id: "q2", title: "Was kostet die Lieferung?", content: "Ab einem Bestellwert von 20€ liefern wir in unserem Liefergebiet kostenlos."},
|
||||||
title: "Was kostet die Lieferung?",
|
|
||||||
content: "Ab einem Bestellwert von 20€ liefern wir in unserem Liefergebiet kostenlos.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q3",
|
id: "q3", title: "Welche Zahlungsmittel gibt es?", content: "Du kannst bequem bar an der Tür oder per PayPal bezahlen."},
|
||||||
title: "Welche Zahlungsmittel gibt es?",
|
|
||||||
content: "Du kannst bequem bar an der Tür oder per PayPal bezahlen.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Häufige Fragen"
|
title="Häufige Fragen"
|
||||||
description="Alles Wichtige zu unserem Lieferservice auf einen Blick."
|
description="Alles Wichtige zu unserem Lieferservice auf einen Blick."
|
||||||
@@ -140,18 +106,13 @@ export default function LandingPage() {
|
|||||||
<ContactText
|
<ContactText
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "canvas-reveal",
|
variant: "canvas-reveal"}}
|
||||||
}}
|
|
||||||
text="Hast du noch Fragen oder möchtest du direkt telefonisch bestellen? Ruf uns an oder schreib uns!"
|
text="Hast du noch Fragen oder möchtest du direkt telefonisch bestellen? Ruf uns an oder schreib uns!"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Jetzt anrufen",
|
text: "Jetzt anrufen", href: "tel:+49123456789"},
|
||||||
href: "tel:+49123456789",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Per WhatsApp",
|
text: "Per WhatsApp", href: "https://wa.me/49123456789"},
|
||||||
href: "https://wa.me/49123456789",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -162,25 +123,17 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "Über uns",
|
label: "Über uns", href: "#about"},
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Sortiment",
|
label: "Sortiment", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "Impressum",
|
label: "Impressum", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Datenschutz",
|
label: "Datenschutz", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #fcfcfc;
|
--background: #09bff3;
|
||||||
--card: #ffffff;
|
--card: #f9f9f9;
|
||||||
--foreground: #1a1a1a;
|
--foreground: #000612e6;
|
||||||
--primary-cta: #0a7039;
|
--primary-cta: #15479c;
|
||||||
--primary-cta-text: #ffffff;
|
--primary-cta-text: #ffffff;
|
||||||
--secondary-cta: #15479c;
|
--secondary-cta: #f9f9f9;
|
||||||
--secondary-cta-text: #ffffff;
|
--secondary-cta-text: #000612e6;
|
||||||
--accent: #ff8c42;
|
--accent: #e2e2e2;
|
||||||
--background-accent: #f3ede2;
|
--background-accent: #2c38b3;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user