import React from 'react'; import { motion, useReducedMotion } from 'framer-motion'; import { Github } from 'lucide-react'; 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 Hero = () => { const shouldReduceMotion = useReducedMotion(); if (shouldReduceMotion) { return ( Hello, nest! A progressive Node.js framework for building efficient, reliable and scalable server-side applications. Documentation Source code ); } return ( Hello, nest! A progressive Node.js framework for building efficient, reliable and scalable server-side applications. Documentation Source code ); }; export default Hero;
A progressive Node.js framework for building efficient, reliable and scalable server-side applications.