Hip Hop Vault

Hip Hop Vault

If needed, provide a short tagline or subtitle to give more context about the project.

Client

Alex KD

Year

2025

Live Project

Project Overview

The origin of the project: Did it come from a personal idea, a client request, or as part of a team effort?
The problem it solves: What specific problem does this project address?

Technologies Used

Detail the frameworks, libraries, and tools used for the user-facing part of the project.

Project Workflow

How did you approach the project? Did you gather requirements from a client, conduct user research, or analyze similar solutions?


Contact

  • tiffani@tiffanireese.com

User Image
Follow Me:

Copyright © TiffaniReese. All Rights Reserved

Contact

tiffani@tiffanireese.com

User Image
Follow Me:

Copyright © TiffaniReese. All Rights Reserved

// Send data to your Next.js API function sendToNextJS(data) { fetch('https://your-nextjs-site.com/api/framer-data', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(data) }) } // Track page views window.addEventListener('load', () => { sendToNextJS({ event: 'page_view', page: window.location.pathname, timestamp: new Date().toISOString() }) }) // Redirect from Framer to Next.js with data const redirectToCheckout = (productId: string) => { window.location.href = `https://your-nextjs-site.com/checkout?product=${productId}&source=framer` }