logo

I Love You Forever

Landing Screen

Overview

This project started as a deeply personal and heartfelt valentines gift for my mom—a memory vault inspired by a book of a similar name that she used to read to me. Not only was it an to create something meaningful but also to experiment with a suite of new technologies that I had been eager to explore. In this post, I’ll walk you through the project, its core components, and the technology stack that helped me bring this homage to life.

Technology Stack

  • Next.js – React framework for scalable and high-performance applications.
  • Drizzle ORM – Type-safe database management.
  • Clerk – Secure authentication and invite-based access control.
  • UploadThing – Simple and efficient file uploads.
  • Resend – Email integration for invitations and updates.
  • React Email – Dynamic email templates with React components.
  • Tailwind CSS – A sleek and responsive UI framework.
  • Simplex-Noise – Procedural noise effects for subtle design elements.

Key Features

Next.js, Server-Side Actions, and Zustand

Working with Next.js has been a joy because it not only provides the performance needed for a highly interactive application but also embraces a modern file-based routing system that keeps things clean and organized. One of the standout aspects of the project is the extensive use of server-side actions. This ensures that critical operations—such as vault creation, media uploads, and user account management—happen securely on the server.

I also dipped my toes into state management by using Zustand in a few parts of the application. Zustand’s minimalist API and its simplicity for sharing state across components allowed me to focus more on the user experience without getting bogged down by overly complex state logic. This combination of Next.js and Zustand has elevated the dynamic feel of the application, as it efficiently bridges client-side interactivity with powerful server-side operations.

Database Management with Drizzle ORM

One of my goals was to use a type-safe and modern database management approach. Drizzle ORM provided just what I needed. With its lightweight design, Drizzle ORM allowed me to define my database schema in a clean, declarative way, ensuring that operations like creating vaults, managing invitations, and recording user uploads were robust and error-free.

Using Drizzle also meant that I could catch type mismatches early on in development, which is a lifesaver when working on a project that touches multiple critical database operations. This added layer of safety was essential for building an application that needed to keep personal memories secure.

Auth and Custom Invite-Only Registration with Clerk

Security is paramount when dealing with anything personal, and this project was no exception. For authentication, I turned to Clerk—a solution that integrates seamlessly with Next.js. What made this even more fun was the custom invite-only registration flow. Since this memory vault was meant for loved ones only, I built a workflow where users can only sign up if they have received an invitation.

This approach not only reinforced the exclusivity of the platform but also allowed me to experiment with custom authentication flows. Clerk’s robust APIs let me handle user sessions, invite creation, and invitation acceptance without too much overhead, giving me more time to focus on the rest of the application’s features.

Email Notifications & Custom Email Templates with Resend and React Email

As a project centered around loving memories, effective communication was key. I integrated Resend for sending email notifications—especially for the invitation process. Whenever a new invite was issued, a beautifully designed email would be sent out using custom templates built with React Email.

These templates allowed me to craft emails that were not only functional but also aesthetically pleasing, keeping in line with the overall visual theme of the vault. This blend of Resend and React Email ensured that every invitation felt personal and reflected the care behind this project.

UploadThing for Effortless Media Management

Memories come in many forms, and for this application, media uploads were critical. Whether it was a beloved photograph or an audio message of a heartfelt note, managing file uploads in a secure and efficient way was essential.

I chose UploadThing to handle images and audio uploads. Its seamless integration with Next.js let me quickly set up file uploading with middleware to ensure that only authenticated users could add files. UploadThing took care of the heavy lifting while allowing me to focus on how these media elements would fit into the overall story of the vault.

UI/UX and Styling with Tailwind, shadcn/ui, and simplex-noise

No project is complete without a well-thought-out user interface. I leaned heavily on Tailwind CSS coupled with the shadcn/ui component library to create a modern and responsive UI. The design was kept simple and clean, ensuring that users could intuitively navigate the vault, be it to upload memories, view past contributions, or manage invitations.

To add a bit of creative flair and uniqueness, I experimented with procedural noise effects via the simplex-noise library. This subtle addition brought a dynamic, organic feel to the visuals, making the landing page feel lively while maintaining its purpose of delivering an elegant user experience.

Conclusion

This project has been a labor of love—a very personal gift for my mom that doubled as an experimental playground to try out a suite of modern web development technologies. From the robust server-side operations powered by Next.js and Zustand to the secure and exclusive invite-only authentication with Clerk, each piece of the tech stack played an essential role in bringing the memory vault to life.

Exploring Drizzle ORM for database management, integrating Resend and React Email for custom notifications, handling media uploads with UploadThing, and polishing the final experience with Tailwind and creative visual effects has been both challenging and immensely rewarding. Each of these components not only enhanced my technical skill set but also contributed to building something with genuine emotional significance.

I hope this deep dive into my journey inspires you to explore new technologies, experiment with thoughtful features, and maybe even build something personal. After all, technology isn’t just about code—it’s about creating meaningful experiences.