Skip to content

Commit 1a0f44c

Browse files
committed
feat: add ProxySQL branding links to website
- Footer tagline links to proxysql.com - ProxySQL added to Project links column in footer - ProxySQL feature card description links to proxysql.com
1 parent bf6f704 commit 1a0f44c

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

website/src/components/FeatureGrid.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const features = [
1818
icon: 'proxysql',
1919
title: 'ProxySQL Integration',
2020
description:
21-
'Deploy a read/write split stack with ProxySQL in front of a replication topology in one command. Perfect for integration testing.',
21+
'Deploy a read/write split stack with <a href="https://proxysql.com" target="_blank" rel="noopener noreferrer" style="color: inherit; text-decoration: underline; text-underline-offset: 2px;">ProxySQL</a> in front of a replication topology in one command. Perfect for integration testing.',
2222
accent: '#f59e0b',
2323
},
2424
{
@@ -75,7 +75,7 @@ const features = [
7575
)}
7676
</div>
7777
<h3 class="feature-title">{f.title}</h3>
78-
<p class="feature-desc">{f.description}</p>
78+
<p class="feature-desc" set:html={f.description}></p>
7979
</div>
8080
))}
8181
</div>

website/src/layouts/Landing.astro

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ const githubUrl = 'https://github.com/ProxySQL/dbdeployer';
9090
</svg>
9191
dbdeployer
9292
</a>
93-
<p class="footer-tagline">Built by the ProxySQL team</p>
93+
<p class="footer-tagline">Maintained by the <a href="https://proxysql.com" target="_blank" rel="noopener noreferrer">ProxySQL</a> team</p>
9494
</div>
9595

9696
<div class="footer-links">
@@ -103,6 +103,7 @@ const githubUrl = 'https://github.com/ProxySQL/dbdeployer';
103103
</div>
104104
<div class="footer-col">
105105
<h4>Project</h4>
106+
<a href="https://proxysql.com" target="_blank" rel="noopener noreferrer">ProxySQL</a>
106107
<a href={githubUrl} target="_blank" rel="noopener noreferrer">GitHub</a>
107108
<a href={`${githubUrl}/releases`} target="_blank" rel="noopener noreferrer">Releases</a>
108109
<a href={`${githubUrl}/blob/main/LICENSE`} target="_blank" rel="noopener noreferrer">Apache 2.0 License</a>

0 commit comments

Comments
 (0)