The Landing Page.

Go from design to site with Framer, the web builder for creative pros.

Get Started

Logo

Logo

Logo

Logo

Fast

You’ve never made a website this fast before.

Easy

Works like the canvas tools you’re familiar with.

FAQ

What is Framer?

Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.

Is it easy to learn?

Framer is the fastest tool to build sites with, because you can ship your design immediately, instead of having to rebuild your design in code or a second tool.

Do I need to code?

Framer is an end to end tool that lets everyone design and ship web sites. You don’t need a frontend team or web programming course. Just basic canvas skills.

Sign up today.

© Framer Inc. 2023

Instagram

Email

function calculateRevenue() { // Get input values let currentPrice = parseFloat(document.getElementById("currentPrice").value); let occupancyRate = parseFloat(document.getElementById("occupancyRate").value) / 100; let classesPerWeek = parseInt(document.getElementById("classesPerWeek").value); // Basic AI Pricing Impact Assumption (10-25% revenue increase) let aiBoostFactor = 1.15; // Average 15% increase // Calculate revenue let currentRevenue = currentPrice * occupancyRate * classesPerWeek * 4; // Monthly let aiRevenue = currentRevenue * aiBoostFactor; // Calculate boost percentage let revenueIncrease = aiRevenue - currentRevenue; let increasePercentage = ((revenueIncrease / currentRevenue) * 100).toFixed(2); // Display results document.getElementById("result").innerHTML = ` Projected Revenue with AI Pricing:
💰 Current Monthly Revenue: $${currentRevenue.toFixed(2)}
🚀 AI-Powered Monthly Revenue: $${aiRevenue.toFixed(2)}
🔥 Estimated Increase: +${increasePercentage}% ($${revenueIncrease.toFixed(2)}/month) `; } // HTML Embed Code (for Framer) let calculatorHTML = `

📈 Revenue Impact Calculator

`; document.write(calculatorHTML);