1import React from 'react';
2import { motion } from 'framer-motion';
3
4const Hero = () => (
5 <motion.section className="hero">
6 <h1>We Build Digital</h1>
7 <h1>Experiences</h1>
8 <p>Crafted with precision</p>
9 <Button variant="primary" />
10 </motion.section>
11);
12
13export default Hero;