Add project files.

This commit is contained in:
clive
2024-11-08 21:45:14 +11:00
parent aba74c8739
commit 58e604fd7c
2292 changed files with 157578 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
@{
ViewData["Title"] = "Thank You";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<div class="container py-4">
<header class="pb-3 mb-4 border-bottom">
<span class="fs-4">@ViewData["Title"]</span>
</header>
<div class="p-5 mb-4 bg-body-tertiary rounded-3">
<div class="container-fluid py-2">
<h1 class="display-6 fw-bold">Thank You for Subscribing!</h1>
<p class="col-md-8 fs-6">
Were thrilled to have you as part of our community.
</p><p class="col-md-8 fs-6">
We look forward to keeping you up to date with the latest news, industry insights, and exclusive updates to help you stay ahead in Product Management and Software Developent.
</p><p class="col-md-8 fs-6">
If you ever have any questions or feedback, feel free to reach out were here to help!
</p><p class="col-md-8 fs-6">
Thanks again for subscribing, and stay tuned for exciting content coming your way soon.
</p>
<p class="col-md-8 fs-6">
<a href="/Home/Index" class="btn btn-primary">
Explore!
</a>
</p>
</div>
</div>
</div>