feat: add fireworks

This commit is contained in:
xHyroM 2022-12-31 18:50:30 +01:00
parent b9b690423b
commit 874eceb505
3 changed files with 25 additions and 6 deletions

View file

@ -2,22 +2,22 @@
const socials = [
{
name: "GitHub",
link: "https://www.google.com/",
link: "https://github.com/xHyroM/",
icon: "github",
},
{
name: "Discord",
link: "https://www.google.com/",
link: "https://discord.gg/kFPKmEKeMS/",
icon: "discord",
},
{
name: "Twitter",
link: "https://www.google.com/",
link: "https://twitter.com/hyrousek/",
icon: "twitter",
},
{
name: "Instagram",
link: "https://www.google.com/",
link: "https://www.instagram.com/hyro.dev/",
icon: "instagram",
},
];

View file

@ -1,7 +1,6 @@
---
import Layout from "../layouts/Layout.astro";
import Hero from "../components/widgets/Hero.astro";
import Navbar from "../components/widgets/Navbar.astro";
---

View file

@ -4,11 +4,31 @@ import Navbar from "../components/widgets/Navbar.astro";
import Container from "../components/atoms/Container.astro";
const projects = [
{
name: "HyLib",
link: "https://github.com/xHyroM/HyLib",
desc: "Source code for HyLib, a paper plugin and powerful library.",
},
{
name: "HyChat",
link: "https://github.com/xHyroM/HyChat",
desc: "Source code for HyChat, a paper plugin.",
},
{
name: "HyX",
link: "https://www.google.com/",
link: "https://github.com/xHyroM/HyX",
desc: "Lorem ipsum dolor sit amet consectetur adipisicing elit. Cumque, quaerat.",
},
{
name: "Mashe",
link: "https://github.com/xHyroM/mashe",
desc: "Simple, fast, and easy to use Event Handling for Java."
},
{
name: "Mumblum",
link: "https://github.com/xHyroM/mumblum",
desc: "Mumblum is a simple, modern discord bot in JDA."
}
];
---