Skip to content

Commit 678e15d

Browse files
Merge pull request #186 from erikdarlingdata/fix/powered-by-line
Add powered-by line on landing page
2 parents 97d7993 + 04ccefc commit 678e15d

2 files changed

Lines changed: 17 additions & 0 deletions

File tree

src/PlanViewer.Web/Pages/Index.razor

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<div class="landing-content">
77
<h2>Free SQL Server Query Plan Analysis</h2>
88
<p class="privacy">Paste or upload a .sqlplan file. Your plan XML never leaves your browser.</p>
9+
<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>
910

1011
@if (errorMessage != null)
1112
{

src/PlanViewer.Web/wwwroot/css/app.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,9 +168,25 @@ main {
168168
font-family: 'Montserrat', sans-serif;
169169
font-size: 1.05rem;
170170
font-weight: 600;
171+
margin-bottom: 0.4rem;
172+
}
173+
174+
.powered-by {
175+
color: var(--text-secondary);
176+
font-size: 0.9rem;
171177
margin-bottom: 1.5rem;
172178
}
173179

180+
.powered-by a {
181+
color: var(--accent);
182+
text-decoration: none;
183+
font-weight: 600;
184+
}
185+
186+
.powered-by a:hover {
187+
text-decoration: underline;
188+
}
189+
174190
/* === Input Area === */
175191
.input-area {
176192
text-align: left;

0 commit comments

Comments
 (0)