update product details

This commit is contained in:
Rami Bitar
2026-06-03 13:41:04 -04:00
parent 4aa55c2b89
commit 3cc7ec376c
42 changed files with 1965 additions and 972 deletions

20
app/layout.tsx Normal file
View File

@@ -0,0 +1,20 @@
import type { ReactNode } from "react";
import "@reacteditor/core/react-editor.css";
import "@reacteditor/plugin-media/styles.css";
import "@reacteditor/plugin-ai/styles.css";
import "./globals.css";
import { Providers } from "./providers";
export const metadata = {
title: "Shopify Storefront",
};
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en">
<body>
<Providers>{children}</Providers>
</body>
</html>
);
}