2026-06-07 21:47:48 +01:00

53 lines
2.2 KiB
Plaintext

@model PublicPageViewModel
@{
ViewData["Title"] = "Contact";
ViewData["ShellClass"] = "marketing-shell";
}
<article class="marketing-home public-info-page">
<section class="public-hero">
<div class="marketing-container public-hero__inner">
<p class="marketing-eyebrow">Contact</p>
<h1>Get in touch</h1>
<p class="marketing-lead">We'd love to hear from you.</p>
<a class="marketing-btn marketing-btn--primary" href="mailto:@Model.SupportEmail">@Model.SupportEmail</a>
</div>
</section>
<section class="public-content-section">
<div class="marketing-container public-card-grid">
<article class="public-card">
<h2>General enquiries</h2>
<p>For questions about PlotWeaver Studio, subscriptions, or whether it is right for your writing process, email <a href="mailto:@Model.SupportEmail">@Model.SupportEmail</a>.</p>
</article>
<article class="public-card">
<h2>Support</h2>
<p>If you're experiencing a problem, please include as much detail as possible, including screenshots if appropriate.</p>
</article>
<article class="public-card">
<h2>Feedback and suggestions</h2>
<p>For feature suggestions, we'd love to hear how PlotWeaver Studio could better support your writing process.</p>
</article>
</div>
</section>
<section class="public-content-section public-content-section--soft">
<div class="marketing-container">
<div class="section-heading">
<p class="marketing-eyebrow">Contact FAQ</p>
<h2>Useful to know</h2>
</div>
<div class="faq-grid">
<article>
<h3>How quickly will I receive a response?</h3>
<p>We aim to respond to enquiries as quickly as possible.</p>
</article>
<article>
<h3>Can I suggest new features?</h3>
<p>Absolutely. PlotWeaver Studio continues to evolve based on feedback from writers.</p>
</article>
</div>
</div>
</section>
</article>