git-subtree-dir: estore git-subtree-mainline: 746868d720b9be1003a2f783b7a12d526d8eea60 git-subtree-split: e34dfc397c94025670baa2b73b482c01f3033a6a
13 lines
344 B
TypeScript
13 lines
344 B
TypeScript
import type { Metadata } from 'next'
|
|
import FeaturedProducts from '@/components/FeaturedProducts'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Shop',
|
|
description:
|
|
'Browse all balloon arrangements, arches, centerpieces, and installations by Beach Party Balloons.',
|
|
}
|
|
|
|
export default function ShopPage() {
|
|
return <FeaturedProducts />
|
|
}
|