From e93db2c7a011ba4f342c2d2be3d21746980547e2 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Sat, 5 Aug 2023 23:28:01 +0100 Subject: [PATCH] feat: add donation page --- OliverBooth/Pages/Donate.cshtml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 OliverBooth/Pages/Donate.cshtml diff --git a/OliverBooth/Pages/Donate.cshtml b/OliverBooth/Pages/Donate.cshtml new file mode 100644 index 0000000..93c81ea --- /dev/null +++ b/OliverBooth/Pages/Donate.cshtml @@ -0,0 +1,27 @@ +@page "/{culture=en}/donate" +@using Microsoft.AspNetCore.Mvc.Localization +@inject IViewLocalizer Localizer +@{ + ViewData["Title"] = "Donate"; +} + +

@Localizer["Donate"]

+

@Localizer["DonatePart1"]

+ +

+ + +

+ +

+ + Buy Me A Coffee + +

+ +

@Localizer["DonatePart2"]

+ + \ No newline at end of file