This repository has been archived on 2025-09-03. You can view files and clone it, but cannot push or open issues or pull requests.
Files
web-old/src/pages/projects.astro

68 lines
2.5 KiB
Plaintext

---
import Layout from "../layouts/Layout.astro";
import ProjectCard from "../components/ProjectCard.astro";
import GalaryZoom from "../components/GalaryZoom.astro";
---
<style lang="scss">
h1 {
margin-bottom: 40px;
}
</style>
<Layout
title="Projects"
description="This is my personal website with my projects, docs and other useful stuff."
>
<main>
<div style="margin-bottom: 20px;">
<h1 style="text-align: center;">Projects</h1>
<GalaryZoom />
<ProjectCard
name="voicenext"
center={true}
gallery={[
"/img/projects/voicenext/Promo.png",
"/img/projects/voicenext/Home.png",
"/img/projects/voicenext/Register.png",
"/img/projects/voicenext/Settings.png",
"/img/projects/voicenext/Settings2.png",
]}
href="https://voicenext.app"
>My team and I are currently working on voicenext, a voice messaging app
designed to keep communication simple and intuitive. With voicenext, you
just hold to speak and tap to listen. We are also working on unique
features that other messaging apps haven't considered because we are
solely focused on audio.
</ProjectCard>
<ProjectCard name="SmartCustomerAI" gallery="/img/projects/sca.png"
>I am currently developing a program that can simulate customer calls.
For this, I am using the Web Speech Recognition API, OpenAI, and
Elevenlabs.
</ProjectCard>
<ProjectCard
name="acecore"
gallery="/img/projects/acecore.png"
href="https://github.com/vaporvee/acecore"
>Modular multi purpose bot powering your Discord server.<br />
Custom forms with ticket and approve system, tags / custom commands, sticky
messages, auto join roles, autopublish, cat pictures and much more
</ProjectCard>
<ProjectCard
name="DiscordRPC Godot Plugin"
gallery="/img/projects/discord-rpc.png"
href="https://github.com/vaporvee/discord-rpc-godot"
>The first Discord RPC plugin for the version 4 of the Godot game
engine.
</ProjectCard>
<ProjectCard
name="Astro.js GitHub Component"
href="https://github.com/vaporvee/astro-github-component"
>Adds a component to astro with statically built GitHub info and dynamic
updated stars and forks. Supports GitHub auth tokens in the built
process (use a .env for example) and dynamic stars/forks caching to
manage the GitHub API rate limiting.
</ProjectCard>
</div>
</main>
</Layout>