feat: bootstrap multi-tenant storefront showcase

This commit is contained in:
2026-06-29 12:06:10 +01:00
commit 1c9e946464
11 changed files with 763 additions and 0 deletions

22
src/app/layout.tsx Normal file
View File

@@ -0,0 +1,22 @@
import type { Metadata } from 'next';
import { store } from '@config/store';
import SiteHeader from '@/components/SiteHeader/SiteHeader';
import SiteFooter from '@/components/SiteFooter/SiteFooter';
import '@/styles/globals.css';
export const metadata: Metadata = {
title: `${store.brandName} · rubberquack`,
description: 'One codebase, four storefronts — a postcss-storestyles showcase.',
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body>
<SiteHeader />
<main>{children}</main>
<SiteFooter />
</body>
</html>
);
}