Back to Posts
10 Mar 2026
Modern Landing Page
A sleek and responsive landing page for a startup.
Modern Landing Page
This is a deep dive into how I built the modern landing page.
Key Features
- Responsive design
- Framer Motion animations
- SEO Optimized
import { motion } from "framer-motion";
export const Hero = () => (
<motion.div initial={{ opacity: 0 }} animate={{ opacity: 1 }}>
<h1>Hello World</h1>
</motion.div>
);