import clsx from 'clsx'; import { GridTileImage } from 'components/grid/tile'; import { getCollectionProducts } from 'lib/shopify'; import type { Product } from 'lib/shopify/types'; import Link from 'next/link'; export function ShirtGridItem({ item, size, priority }: { item: Product; size: 'full' | 'half' | 'third' | 'quarter'; priority?: boolean; }) { return (
{item.title && (

{item.title}

)}
); } export async function HomepageShirts() { // Collections that start with `hidden-*` are hidden from the search page. const homepageItems = await getCollectionProducts({ collection: 'shirts' }); if (!homepageItems[0] || homepageItems.length <= 0) return null; const [firstProduct, secondProduct, thirdProduct, fourthProduct] = homepageItems; return ( <>

Presenting the latest season of extra-large garments from Okay XL...

“ Fake Anime Shows Your Friends Have Never Heard Of ”

{homepageItems.map((product) => ( ))}

Okay XL only offers t-shirt sizes XL and up....

I made the decision to exclusively stock sizes XL & up because, I can.

You won't find any t-shirts listed for sale on this site smaller than XL but, if you want to request a smaller size{' '} you can find more information here.

); }