update design

This commit is contained in:
Rami Bitar
2026-06-10 13:47:50 -04:00
parent b5a79b6475
commit b212250da0
96 changed files with 7486 additions and 6441 deletions

View File

@@ -1,18 +1,11 @@
import Header from '@/components/Header';
import Footer from '@/components/Footer';
import ProductDetail from '@/components/product-detail/ProductDetail';
import React from 'react';
import ProductDetail from '@/components/shopify/product-detail';
import config from '@/lib/config.json';
export default function Page() {
const productHandle = config.data.product;
const Home: React.FC = () => {
return (
<div className="flex flex-col min-h-screen">
<Header />
<main className="flex-1">
<ProductDetail handle={productHandle} />
</main>
<Footer />
</div>
<ProductDetail handle={config.data.product} />
);
}
};
export default Home;