From 874eceb505c0946c8567e1243fa49158030a099e Mon Sep 17 00:00:00 2001 From: xHyroM Date: Sat, 31 Dec 2022 18:50:30 +0100 Subject: [PATCH] feat: add fireworks --- src/components/widgets/Socials.astro | 8 ++++---- src/pages/index.astro | 1 - src/pages/projects.astro | 22 +++++++++++++++++++++- 3 files changed, 25 insertions(+), 6 deletions(-) diff --git a/src/components/widgets/Socials.astro b/src/components/widgets/Socials.astro index 9879ec6..46b5b66 100644 --- a/src/components/widgets/Socials.astro +++ b/src/components/widgets/Socials.astro @@ -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", }, ]; diff --git a/src/pages/index.astro b/src/pages/index.astro index 0eb6f2b..1c7c88b 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,7 +1,6 @@ --- import Layout from "../layouts/Layout.astro"; import Hero from "../components/widgets/Hero.astro"; - import Navbar from "../components/widgets/Navbar.astro"; --- diff --git a/src/pages/projects.astro b/src/pages/projects.astro index 2cd6166..0862dcf 100644 --- a/src/pages/projects.astro +++ b/src/pages/projects.astro @@ -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." + } ]; ---