import React from 'react'; import { motion, useReducedMotion } from 'framer-motion'; const fadeUpPreset = (delay = 0, duration = 1.2) => ({ initial: { opacity: 0, y: 20 }, whileInView: { opacity: 1, y: 0 }, viewport: { once: true, amount: 0.2 }, transition: { delay, duration, ease: "easeOut" } }); const CallToAction = () => { const shouldReduce = useReducedMotion(); if (shouldReduce) { return (

Deploy, mind!

Nest is framework-agnostic, so you can use any HTTP library you want. Express and Fastify are supported out of the box.

Explore your graph

Nest provides a powerful CLI that helps you scaffold, develop, and maintain your Nest applications.

); } return (

Deploy, mind!

Nest is framework-agnostic, so you can use any HTTP library you want. Express and Fastify are supported out of the box.

Explore your graph

Nest provides a powerful CLI that helps you scaffold, develop, and maintain your Nest applications.

); }; export default CallToAction;