Skip to content

Commit 306b501

Browse files
JoeMattclaude
andcommitted
fix: trailing slash on /features/ and /downloads/ links, rel on install links
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 563a6d7 commit 306b501

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/app/downloads/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ export default function DownloadsPage() {
236236
Using AltStore / SideStore (Recommended)
237237
</h3>
238238
<ol className="list-decimal list-inside space-y-2 ml-4">
239-
<li>Install <a href="https://altstore.io" className="text-blue-600 dark:text-blue-400 hover:underline">AltStore</a> or <a href="https://sidestore.io" className="text-blue-600 dark:text-blue-400 hover:underline">SideStore</a> on your device</li>
239+
<li>Install <a href="https://altstore.io" target="_blank" rel="noopener noreferrer" className="text-blue-600 dark:text-blue-400 hover:underline">AltStore</a> or <a href="https://sidestore.io" target="_blank" rel="noopener noreferrer" className="text-blue-600 dark:text-blue-400 hover:underline">SideStore</a> on your device</li>
240240
<li>Tap the &quot;Add to AltStore&quot; or &quot;Add to SideStore&quot; button above</li>
241241
<li>Browse to iCube in the app and tap &quot;Install&quot;</li>
242242
<li>Enjoy automatic updates!</li>

src/app/not-found.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default function NotFound() {
2323
Go Home
2424
</Link>
2525
<Link
26-
href="/downloads"
26+
href="/downloads/"
2727
className="bg-gray-200 hover:bg-gray-300 dark:bg-gray-700 dark:hover:bg-gray-600 text-gray-900 dark:text-white px-6 py-3 rounded-lg font-semibold transition-colors"
2828
>
2929
Downloads

src/app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ export default function Home() {
177177
</h2>
178178
<Features compact />
179179
<div className="text-center mt-8">
180-
<a href="/features" className="text-blue-600 dark:text-blue-400 hover:underline font-semibold">See all features →</a>
180+
<a href="/features/" className="text-blue-600 dark:text-blue-400 hover:underline font-semibold">See all features →</a>
181181
</div>
182182
</div>
183183
</section>

0 commit comments

Comments
 (0)