Compare commits

...

6 commits

Author SHA1 Message Date
zeon-neon[bot]
3cc2944365
enhancement(lint): Fix lint errors for pages/index.vue
Co-authored-by: NeonGamerBot-QK <neon@saahild.com>
Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com>
2025-06-26 02:08:07 +00:00
zeon-neon[bot]
3e52214f28
enhancement(lint): Fix lint errors for package.json
Co-authored-by: NeonGamerBot-QK <neon@saahild.com>
Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com>
2025-06-26 02:08:06 +00:00
zeon-neon[bot]
a7c50ee337
enhancement(lint): Fix lint errors for components/Footer.vue
Co-authored-by: NeonGamerBot-QK <neon@saahild.com>
Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com>
2025-06-26 02:08:05 +00:00
zeon-neon[bot]
2da982b534
enhancement(lint): Fix lint errors for components/Backdrop.vue
Co-authored-by: NeonGamerBot-QK <neon@saahild.com>
Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com>
2025-06-26 02:08:04 +00:00
zeon-neon[bot]
dda029221f
enhancement(lint): Fix lint errors for app.vue
Co-authored-by: NeonGamerBot-QK <neon@saahild.com>
Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com>
2025-06-26 02:08:03 +00:00
816d9dba30
footer 2025-06-25 22:07:52 -04:00
6 changed files with 75 additions and 15 deletions

View file

@ -1,9 +1,11 @@
<script>
import Backdrop from "./components/Backdrop.vue";
import Footer from "./components/Footer.vue";
</script>
<template>
<div>
<Backdrop />
<router-view />
<Footer />
</div>
</template>

BIN
bun.lockb

Binary file not shown.

View file

@ -130,6 +130,31 @@ const handleResize = () => {
onMounted(() => {
init();
animate();
// if im holding down shift how can i make it go faster? code it
window.addEventListener("keydown", (e) => {
if (e.key === "Shift") {
chars.forEach((char) => {
char.speed *= 10; // Double the speed when Shift is pressed
});
}
if (e.ctrlKey) {
chars.forEach((char) => {
char.speed *= 1.1; // Halve the speed when Ctrl is pressed
});
}
if (e.altKey) {
chars.forEach((char) => {
char.speed *= 0.9; // Halve the speed when Alt is pressed
});
}
});
window.addEventListener("keyup", (e) => {
if (e.key === "Shift") {
chars.forEach((char) => {
char.speed /= 10; // Reset the speed when Shift is released
});
}
});
window.addEventListener("mousemove", handleMouseMove);
window.addEventListener("resize", handleResize);
});

44
components/Footer.vue Normal file
View file

@ -0,0 +1,44 @@
<template>
<footer
class="footer sm:footer-horizontal bg-[#1e1e2e] text-neutral-content p-5 shadow-lg rounded-lg absolute bottom-5 left-1/2 transform -translate-x-1/2 w-1/3 max-w-screen-lg"
>
<aside>
<p class="font-mono font-small">
Made by Neon - Copyright {{ new Date().getFullYear() }}.
<br />
<br />
Freedom of speech is a fundamental human right.
</p>
</aside>
<nav>
<div class="grid grid-flow-col gap-2">
<!-- Social icons go here -->
<!-- TODO: make sure the bento icon is here, pgp, and canary and source link -->
<a
href="https://github.com/saahild.com"
target="_blank"
rel="noopener noreferrer"
>
<Icon
name="mdi:github"
class="text-2xl hover:scale-110 transition-transform duration-300"
/>
</a>
<a href="https://saahild.com/creds/public.pgp.txt">
<Icon
name="mdi:key"
class="text-2xl hover:scale-110 transition-transform duration-300"
/>
</a>
<!-- <Icon name="catppuccin:folder-queue" class="text-2xl" /> -->
<a>
<!-- <img
src="/bento.svg"
alt="Bento Icon"
class="w-8 h-8 hover:scale-110 transition-transform duration-300"
/> -->
</a>
</div>
</nav>
</footer>
</template>

View file

@ -23,5 +23,8 @@
"tailwindcss": "^4.1.10",
"vue": "^3.5.16",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@iconify-json/catppuccin": "^1.2.11"
}
}

View file

@ -1,15 +1 @@
<template>
<div class="hero min-h-screen">
<div class="hero-content text-center">
<div class="max-w-md">
<h1 class="text-5xl font-bold">Hello there</h1>
<p class="py-6">
Provident cupiditate voluptatem et in. Quaerat fugiat ut assumenda
excepturi exercitationem quasi. In deleniti eaque aut repudiandae et a
id nisi.
</p>
<button class="btn btn-primary">Get Started</button>
</div>
</div>
</div>
</template>
<template>meow</template>