From 992c300458a460c663b7b4e40134f7726cd04703 Mon Sep 17 00:00:00 2001
From: zha19115 <105790331+zha19115@users.noreply.github.com>
Date: Sat, 13 May 2023 18:43:48 +0200
Subject: [PATCH] Start
---
Shared/Yummy-Punkte.razor | 32 ++++++++++++++++++++++++++++
Shared/Yummy-Punkte.razor.css | 40 +++++++++++++++++++++++++++++++++++
2 files changed, 72 insertions(+)
create mode 100644 Shared/Yummy-Punkte.razor
create mode 100644 Shared/Yummy-Punkte.razor.css
diff --git a/Shared/Yummy-Punkte.razor b/Shared/Yummy-Punkte.razor
new file mode 100644
index 0000000..c2a3b3d
--- /dev/null
+++ b/Shared/Yummy-Punkte.razor
@@ -0,0 +1,32 @@
+@page "/Bestellabschluss"
+
+
+
+
Sie haben derzeit 1 Yummy-Punkt(e)
+
Bei einem Mindestbestellwert von 8€ erhalten Sie ein Yummy-Punkt.
+ Ab der 10ten Bestellung gibt es einen Rabatt zu Ihrer nächsten Bestellung.
+
+
+ @for(int i = 0; i < 10; i++)
+ {
+
+ }
+
+
+
+
Achtung: Bitte beachten Sie, dass keine online Bezahlung zur Verfügung steht.
+ Diese dient nur zur Vorbestellung und muss selbst abgeholt werden.
+
+
+
+
+
+
+
+
+@code {
+
+
+}
diff --git a/Shared/Yummy-Punkte.razor.css b/Shared/Yummy-Punkte.razor.css
new file mode 100644
index 0000000..9c5f2ac
--- /dev/null
+++ b/Shared/Yummy-Punkte.razor.css
@@ -0,0 +1,40 @@
+body, html {
+ padding: 0px;
+ margin: 0px;
+ margin-bottom: 15px;
+}
+
+p {
+ text-align:center;
+}
+
+img {
+ width: 20%;
+ height: auto;
+ padding: 5px;
+}
+
+.text {
+ color: grey;
+ font-size: 13px;
+}
+
+.button {
+
+ text-align: center;
+}
+
+#button1, #button2 {
+ margin: 10px;
+ display: inline-block;
+ border-radius: 50px;
+}
+
+#button1 {
+ background-color: #F9BE89;
+}
+
+#button2 {
+ background-color: #89F9A5;
+}
+