19 lines
482 B
TypeScript
19 lines
482 B
TypeScript
import Header from '@/components/Header';
|
|
import Footer from '@/components/Footer';
|
|
import ProductDetail from '@/components/product-detail/ProductDetail';
|
|
import config from '@/lib/config.json';
|
|
|
|
export default function Page() {
|
|
const productHandle = config.data.product;
|
|
|
|
return (
|
|
<div className="flex flex-col min-h-screen">
|
|
<Header />
|
|
<main className="flex-1">
|
|
<ProductDetail handle={productHandle} />
|
|
</main>
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|