import { motion } from 'framer-motion'; import Image from 'next/image'; import { FiArrowDownCircle } from 'react-icons/fi'; import useThemeSwitcher from '../../hooks/useThemeSwitcher'; const fade = (delay = 0.2) => ({ initial: false, animate: { opacity: 1 }, transition: { ease: 'easeInOut', duration: 0.9, delay }, }); function AppBanner() { const [activeTheme, , mounted] = useThemeSwitcher(); return (
이석호의 포트폴리오 빠른 구현과 동시에, 안정적으로 운영될 구조를 만드는 데 집중합니다. 이력서 보기
Developer
); } export default AppBanner;