Files
Clivelancaster/Views/Home/ThankYou.cshtml
T
clive c72bd65bfa
Gitea CI/CD / build (push) Failing after 5m0s
Website Refresh
2026-08-11 21:27:27 +10:00

39 lines
1.8 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@{
ViewData["Title"] = "Thank You";
Layout = "~/Views/Shared/_PageLayout.cshtml";
}
<partial name="_PartialPageNavigation" />
<header class="pt-32 pb-12 bg-slate-50 text-center px-6">
<h1 class="text-4xl md:text-5xl font-bold text-slate-900 mb-4">@ViewData["Title"]</h1>
</header>
<main class="flex-grow max-w-7xl mx-auto px-6 py-12 w-full">
<div class="max-w-6xl mx-auto">
<div class="bg-white p-8 md:p-12 rounded-2xl shadow-sm border border-slate-100">
<div class="prose prose-slate max-w-none">
<h2 class="text-xl font-bold text-slate-900 mb-4">Youre in. Lets build something great.</h2>
<p class="text-slate-600 leading-relaxed mb-6">
Welcome to the inner circle. Product management moves fast, but you just got a head start.
</p>
<p class="text-slate-600 leading-relaxed mb-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="text-slate-600 leading-relaxed mb-6">
If you ever have any questions or feedback, feel free to reach out were here to help!
</p>
<p class="text-slate-600 leading-relaxed mb-6">
Thanks again for subscribing, and stay tuned for exciting content coming your way soon.
</p>
<p class="text-slate-600 leading-relaxed mb-6">
<a href="/Home/Index" class="px-8 py-4 bg-slate-900 text-white font-semibold rounded-lg hover:bg-slate-800 transition text-center shadow-xl">
Explore!
</a>
</p>
</div>
</div>
</div>
</main>