39 lines
1.8 KiB
Plaintext
39 lines
1.8 KiB
Plaintext
@{
|
||
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">You’re in. Let’s 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 we’re 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> |