Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/PlanViewer.Web/Pages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<div class="landing-content">
<h2>Free SQL Server Query Plan Analysis</h2>
<p class="privacy">Paste or upload a .sqlplan file. Your plan XML never leaves your browser.</p>
<p class="powered-by">Powered by the same analysis engine in the <a href="https://github.com/erikdarlingdata/PerformanceStudio" target="_blank" rel="noopener">Performance Studio</a> app.</p>

@if (errorMessage != null)
{
Expand Down
16 changes: 16 additions & 0 deletions src/PlanViewer.Web/wwwroot/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,25 @@ main {
font-family: 'Montserrat', sans-serif;
font-size: 1.05rem;
font-weight: 600;
margin-bottom: 0.4rem;
}

.powered-by {
color: var(--text-secondary);
font-size: 0.9rem;
margin-bottom: 1.5rem;
}

.powered-by a {
color: var(--accent);
text-decoration: none;
font-weight: 600;
}

.powered-by a:hover {
text-decoration: underline;
}

/* === Input Area === */
.input-area {
text-align: left;
Expand Down
Loading