import React from "react"; import { Heading, Text, Box } from "@chakra-ui/react"; import { motion } from "framer-motion"; // For animations // Animation variants for the heading const headingVariants = { hidden: { opacity: 0, y: -20 }, visible: { opacity: 1, y: 0, transition: { duration: 0.6, ease: "easeOut" }, }, }; // Animation variants for the text const textVariants = { hidden: { opacity: 0, y: 20 }, visible: { opacity: 1, y: 0, transition: { duration: 0.6, delay: 0.3, ease: "easeOut" }, }, }; // Animation for the emoji const emojiVariants = { hover: { scale: 1.2, rotate: [0, 10, -10, 0], transition: { duration: 0.3, repeat: Infinity, repeatType: "loop" }, }, }; export const WelcomeText = () => { return ( {/* Animated Heading */} Buy Me a Coffee {/* Animated Text with Interactive Emoji */} Send me a coffee for 1 VET, share the love!{" "} ☕❤️ ); };