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;
+}
+