Rocky_Mountain_Vending/.pnpm-store/v10/files/73/72e8c8826a405ae75234ac4ef9b069ee66b79fbd894c97160f4fc8e8488dfaa609a9d6756d7088098d06626fe9ad96d2c026d7533e32db26d77086dcfa0bcf
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

11 lines
210 B
Text

export function cubicIn(t) {
return t * t * t;
}
export function cubicOut(t) {
return --t * t * t + 1;
}
export function cubicInOut(t) {
return ((t *= 2) <= 1 ? t * t * t : (t -= 2) * t * t + 2) / 2;
}