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" } }); function CoursesSection() { const shouldReduce = useReducedMotion(); if (shouldReduce) { return (

Official NestJS Courses

Learn from the creators of NestJS. Our comprehensive courses will teach you everything you need to know to build production-ready applications.

); } return (

Official NestJS Courses

Learn from the creators of NestJS. Our comprehensive courses will teach you everything you need to know to build production-ready applications.

); } export default CoursesSection;