WHAT WAS DONE: 1. Created /discord redirect page → https://discord.gg/hDHvKfqhKs 2. Updated Contact page Discord button to point to /discord 3. Added ALL social media links with Simple Icons to Contact page 4. Added YouTube and social links section to homepage DISCORD REDIRECT PAGE (discord.njk): - JavaScript redirect to Discord invite - Fallback button for users with JS disabled - Uses permalink: /discord/ - Redirects to: https://discord.gg/hDHvKfqhKs CONTACT PAGE (contact.njk): - Discord button now points to /discord (internal redirect) - Social Media card now has ALL platforms with official Simple Icons: * Linktree (all socials hub) * YouTube * Twitter/X * Instagram * TikTok * Twitch * Facebook * Reddit * BlueSky - Icons via https://cdn.simpleicons.org/ HOMEPAGE (index.njk): - Added "Follow Our Journey" section before final CTA - Includes 5 main platforms: YouTube, Discord, X, Instagram, TikTok - Simple Icons for visual consistency - Centered layout with flex display ICONS: All social icons use Simple Icons CDN for official brand colors and consistent sizing (24px on contact, 28px on homepage). Signed-off-by: Claude (Chronicler #56) <claude@firefrostgaming.com>
19 lines
978 B
Plaintext
19 lines
978 B
Plaintext
---
|
|
layout: layouts/base.njk
|
|
title: Join Our Discord
|
|
permalink: /discord/
|
|
---
|
|
|
|
<script>
|
|
// Redirect to Discord invite
|
|
window.location.href = "https://discord.gg/hDHvKfqhKs";
|
|
</script>
|
|
|
|
<!-- Fallback for users with JavaScript disabled -->
|
|
<div style="padding: 200px 40px; background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%); text-align: center; min-height: 60vh;">
|
|
<div style="font-size: 5rem; margin-bottom: 30px;">💬</div>
|
|
<h1 style="font-size: 3rem; font-weight: 900; margin-bottom: 30px; color: #A855F7;">Redirecting to Discord...</h1>
|
|
<p style="font-size: 1.3rem; color: #e8f4f8; margin-bottom: 40px;">If you're not redirected automatically, click the button below:</p>
|
|
<a href="https://discord.gg/hDHvKfqhKs" style="display: inline-block; background: linear-gradient(135deg, #A855F7 0%, #C77DFF 100%); color: white; padding: 20px 50px; text-decoration: none; border-radius: 12px; font-weight: 700; font-size: 1.3rem;">Join Discord Server</a>
|
|
</div>
|