
The app features JWT authentication and real-time updates using Server-Sent Events (SSE). It consists of four main pages: Home, Login, Register, and Create New Feedback. Users can share their thoughts and opinions through the app.
The Feedback Hub is an innovative project designed to streamline user feedback through a modern web architecture. It employs a Turborepo setup, allowing developers to efficiently manage multiple packages and applications within a single repository. With a focus on using the latest technologies and frameworks, this application provides a robust platform for users to engage, share, and access feedback seamlessly.
Building on the foundations of GraphQL and TypeScript, the Feedback Hub ensures a smooth experience for both developers and users alike. The frontend, crafted using Remix and styled with Tailwind CSS alongside DaisyUI, creates an aesthetically pleasing and highly functional interface. With features like JWT authentication and real-time updates, the Feedback Hub is well-suited for anyone looking to gather or provide feedback effortlessly.

Remix is a modern JavaScript framework that focuses on building fast and performant web applications. It emphasizes a combination of server-rendered content and client-side interactivity, offering a robust architecture for creating scalable and maintainable projects.
Vite is a build tool that aims to provide a faster and leaner development experience for modern web projects
Tailwind CSS is a utility-first CSS framework that provides pre-defined classes for building responsive and customizable user interfaces.
daisyUI adds classes to Tailwind CSS for all common UI components. Classes like btn, card, etc. This allows us to focus on important things instead of making basic elements for every project.
Drizzle ORM is a TypeScript ORM for SQL databases designed with maximum type safety in mind. It comes with a drizzle-kit CLI companion for automatic SQL migrations generation. Drizzle ORM is meant to be a library, not a framework. It stays as an opt-in solution all the time at any levels.
ESLint is a linter for JavaScript that analyzes code to detect and report on potential problems and errors, as well as enforce consistent code style and best practices, helping developers to write cleaner, more maintainable code.
A website that uses GraphQL as a query language to manage data fetching and state management. This includes features such as a strongly typed schema, client-side caching, and declarative data fetching to streamline data management and optimize website performance.
Turbo is an incremental bundler and build system optimized for JavaScript and TypeScript, written in Rust.
TypeScript is a superset of JavaScript, providing optional static typing, classes, interfaces, and other features that help developers write more maintainable and scalable code. TypeScript's static typing system can catch errors at compile-time, making it easier to build and maintain large applications.
Zod is a TypeScript-first schema declaration and validation library. It allows you to define schemas that can validate data at runtime while providing excellent TypeScript inference, making it perfect for API validation, form validation, and type-safe data handling.