import React, { FC } from 'react'; import { motion } from 'framer-motion'; import { ContactButton } from './ContactButton'; /** * Hero Section component. */ export const HeroSection: FC = () => { return (
{/* Navbar */}
Jack.
About Services Projects Contact
{/* Content Wrapper */}
{/* Hero Heading */} Hi, i'm jack {/* Bottom Bar */}
{/* Left Paragraph */} a 3d creator driven by crafting striking and unforgettable projects {/* Right Contact Button */} Contact Me
{/* Hero Portrait (Magnet Component) */}
Jack Portrait
); };