Skip to content

Commit

Permalink
Merge pull request #11 from Vortex-Linux/Navbar
Browse files Browse the repository at this point in the history
Fixes Social Links and download button
  • Loading branch information
hsmith-dev authored Oct 18, 2024
2 parents a38f33a + 79a8662 commit 3728517
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/Hero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import "../styles/Hero.css";
<span class="highlight">Vortex Linux</span> v0.1 Coming Soon
</h1>
<p class="subtitle">The Secure, Immutable OS that Empowers Every User.</p>
<a href="#" class="download-btn">Download</a>
<a href="/download" class="download-btn">Download</a>
<div class="social-links">
<span>Follow Us :</span>
<SocialLinks />
Expand Down
44 changes: 39 additions & 5 deletions src/content/data/social-links.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,47 @@
// src/data/socialLinks.js
export const socialLinks = [
{
name: "mdi:discord",
href: "https://discord.com/invite/MsF24qUA5y",
alt: "Discord Server",
},
{
name: "mdi:facebook",
href: "https://www.facebook.com/people/VortexLinux/61564619819936/",
alt: "Facebook Profile",
},
{
name: "mdi:instagram",
href: "https://www.instagram.com/vortexlinux/",
alt: "Instagram Profile",
},
{
name: "mdi:twitter",
href: "https://x.com/Vortex_Linux",
alt: "X Profile",
},
{
name: "mdi:dev-to",
href: "https://dev.to/vortexlinux",
alt: "DEV.to Profile",
},
{
name: "mdi:youtube",
href: "https://www.youtube.com/@VortexLinux",
alt: "Youtube Channel",
},
{
name: "mdi:reddit",
href: "https://www.reddit.com/r/vortexlinux/",
alt: "Reddit Profile",
},
{
name: "mdi:github",
href: "https://github.com/yourusername",
alt: "GitHub Profile",
href: "https://github.com/Vortex-Linux",
alt: "Github Page",
},
{
name: "mdi:linkedin",
href: "https://www.linkedin.com/in/yourprofile",
alt: "LinkedIn Profile",
href: "https://linkedin.com/company/vortexlinux",
alt: "Linkedin Profile",
},
];

0 comments on commit 3728517

Please sign in to comment.