import { motion } from "framer-motion"; import { Prism as SyntaxHighlighter } from "react-syntax-highlighter"; import { vscDarkPlus } from "react-syntax-highlighter/dist/esm/styles/prism"; const fadeInUp = { initial: { opacity: 0, y: 20 }, animate: { opacity: 1, y: 0 }, transition: { duration: 0.6 }, }; const staggerContainer = { animate: { transition: { staggerChildren: 0.1, }, }, }; export const Hero = () => { return (
👋 Hello, I'm PedroTech {" "} Creative Developer & Designer I craft beautiful digital experiences that combine stunning design with powerful functionality. Specializing in modern web applications and interactive user interfaces. {" "} View My Work Contact Me
{`const aboutMe: DeveloperProfile = { codename: "PedroTech", origin: "🌍 Somewhere between a coffee shop and a terminal", role: "Fullstack Web Sorcerer", stack: { languages: ["JavaScript", "TypeScript", "SQL"], frameworks: ["React", "Next.js", "TailwindCSS", "Supabase"], }, traits: [ "pixel-perfectionist", "API whisperer", "dark mode advocate", "terminal aesthetic enthusiast", ], missionStatement: "Turning ideas into interfaces and bugs into feature", availability: "Available for hire", };`}
💻 {" "} Currently working on something awesome!
); };