import Navbar from "../components/Navbar"; import Hero from "../components/Hero"; import Produk from "../components/Produk"; import Cakupan from "../components/Cakupan"; import { motion } from "framer-motion"; const sectionVariant = { hidden: { opacity: 0, y: 40 }, visible: (delay = 0) => ({ opacity: 1, y: 0, transition: { duration: 0.8, delay, ease: "easeOut", }, }), }; export default function Home() { return ( {/* Navbar muncul pertama */} {/* Hero muncul kedua */} {/* Produk muncul ketiga */} {/* Cakupan muncul terakhir */} ); }