import { getProducts } from "@/lib/woocommerce"; import Header from "@/components/layout/Header"; import Footer from "@/components/layout/Footer"; import ProductCard from "@/components/product/ProductCard"; export const metadata = { title: "ManoonOils - Premium Natural Oils for Hair & Skin", description: "Discover our premium collection of natural oils for hair and skin care. Handmade with love.", }; export default async function Homepage() { const products = await getProducts(); const publishedProducts = products.filter((p) => p.status === "publish").slice(0, 4); return (
{/* Hero Section */}

ManoonOils

Premium Natural Oils for Hair & Skin

Shop Now
{/* Products Section */} {publishedProducts.length > 0 && (

Our Products

{publishedProducts.map((product, index) => ( ))}
)} {/* About Teaser */}

Natural & Pure

Our oils are crafted with love using only the finest natural ingredients.

Learn More
); }