import { ProductGrid } from "@/components/products/ProductGrid"; import { Section } from "@/components/ui/Section"; import { Heading, Text } from "@/components/ui/Typography"; import { getBoxProducts } from "lib/shopify"; export default async function TestBoxesPage() { const boxes = await getBoxProducts({ sortKey: 'CREATED_AT', reverse: true }); return (
Test Box Products Found {boxes.length} box products. This is a temporary test page.
{boxes.length === 0 ? (
No box products found Try adding products with 'box' in the title or with the 'box' tag.
) : ( )}
); }