mirror of
https://github.com/vercel/commerce.git
synced 2025-05-12 20:57:51 +00:00
19 lines
596 B
TypeScript
19 lines
596 B
TypeScript
import ManufacturersGrid from 'components/manufacturers-grid';
|
|
import Tag from 'components/tag';
|
|
import { getMetaobjects } from 'lib/shopify';
|
|
|
|
const Manufacturers = async () => {
|
|
const manufacturers = await getMetaobjects('make');
|
|
return (
|
|
<div className="px-6 py-20">
|
|
<div className="mx-auto flex max-w-7xl flex-col gap-3">
|
|
<Tag text="Get Started" />
|
|
<h3 className="mb-3 text-3xl font-semibold lg:text-4xl">Browse Parts By Manufacturer</h3>
|
|
<ManufacturersGrid manufacturers={manufacturers} />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Manufacturers;
|