2026-06-06 20:36:54 +01:00

44 lines
1.7 KiB
Plaintext

@{
ViewData["Title"] = "PlotWeaver Studio";
}
<section class="page-heading">
<div>
<p class="eyebrow">Story planning workspace</p>
<h1>PlotWeaver Studio</h1>
<p class="lead-text">
A story planning workspace for writers who need to track plots, scenes, characters, clues, threads, and continuity without losing their minds.
</p>
</div>
<div class="button-row">
@if (User.Identity?.IsAuthenticated == true)
{
<a class="btn btn-primary" asp-controller="Projects" asp-action="Index">Go to Projects</a>
}
else
{
<a class="btn btn-primary" asp-controller="Account" asp-action="Login">Sign in</a>
<a class="btn btn-outline-primary" asp-controller="Account" asp-action="Register">Create account</a>
}
</div>
</section>
<section class="content-grid">
<article class="plain-card">
<h2>Plan books, chapters, and scenes</h2>
<p>Shape a novel, a series, or a messy first draft into a structure you can actually see and revise.</p>
</article>
<article class="plain-card">
<h2>Track characters and relationships</h2>
<p>Follow appearances, arcs, knowledge, relationships, locations, and the changing emotional pressure of the story.</p>
</article>
<article class="plain-card">
<h2>Follow plot lines and clues</h2>
<p>Keep promises, reveals, unresolved threads, objects, and story assets visible from setup to payoff.</p>
</article>
<article class="plain-card">
<h2>Review story health</h2>
<p>Use timelines, metrics, warnings, and continuity checks to find problems before they spread through the manuscript.</p>
</article>
</section>