ToyCouture

ToyCouture

A short summary of the project—what it is, who it’s for, and what problem it solves. Example: "A mobile app designed to help users track their fitness goals.

Client

Tiffani R.

Year

2025

Live Project

Project Overview

A mobile app designed to help users track their fitness goals and progress over time.

Key Features

List the tools, frameworks, and technologies you used to complete the project.

Workflow

Include high-quality screenshots or videos to show the project in action. This could include user interfaces, workflow diagrams, or before-and-after comparisons.


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` }