feat: add example

This commit is contained in:
2026-08-01 09:31:08 +03:00
parent 15805e28df
commit 26b59686a5
434 changed files with 34975 additions and 4995 deletions

View File

@@ -0,0 +1,31 @@
import type { Metadata } from 'next'
import { AppProviders } from './providers'
import type { AppLayoutProps } from './types/app-layout-props.type'
import './globals.css'
/**
* Статические metadata архитектурного demo-приложения.
*/
export const metadata: Metadata = {
title: {
default: 'Layer Supply',
template: '%s / Layer Supply'
},
description: 'A complete Next.js storefront demonstrating Scoped Layered Module Design.'
}
/**
* Корневая Next.js entry point с application-scoped providers.
*/
export default function RootLayout(props: AppLayoutProps) {
const { children } = props
return (
<html lang="en">
<body>
<AppProviders>{children}</AppProviders>
</body>
</html>
)
}