import { SHOP } from "../config/shop.ts"; import { DesignCard, DesignGrid } from "./Designs.jsx"; import { Life } from "../components/Life.jsx"; import { ProductCard } from "../components/ProductCard.jsx"; import { ProductGrid } from "../components/ProductGrid.jsx"; import { Strip } from "../components/Strip.jsx"; export function Home({ designs = [], sections, fresh = null, now }) { return ( <> {fresh ? ( {fresh.products.map((product, i) => ( ))} ) : null} {designs.length ? ( ) : null} {sections.map((one) => ( ))} > ); }