Initial commit

This commit is contained in:
Rami Bitar
2026-04-19 11:15:11 -04:00
commit 1fb1df8cfd
98 changed files with 13291 additions and 0 deletions

34
app/layout.tsx Normal file
View File

@@ -0,0 +1,34 @@
import React from 'react';
import type { Metadata } from 'next';
import './globals.css';
import { Providers } from './providers';
import ShopifyCart from '@/components/shopify/cart-drawer';
import ShopHeader from '@/components/shopify/shop-header';
import ShopFooter from '@/components/shopify/shop-footer';
export const metadata: Metadata = {
title: 'Frontend | Shopify',
description: 'Frontend Shopify Storefront',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<head></head>
<body className="m-0 p-0 font-body">
<Providers>
<ShopHeader />
<main className="min-h-screen">
{children}
</main>
<ShopFooter />
<ShopifyCart />
</Providers>
</body>
</html>
);
}