diff --git a/README.md b/README.md
index ce36216..d716fad 100644
--- a/README.md
+++ b/README.md
@@ -126,6 +126,10 @@ Just run `nx build demoapp` to build the application. The build artifacts will b
```bash
nx g @nx/react:component NAME --project site-layouts
```
+## Create a new Page
+```bash
+nx g @nx/react:component NAME --project site-pages
+```
# Стиль кода
## Коммиты
diff --git a/libs/site-pages/.babelrc b/libs/site-pages/.babelrc
new file mode 100644
index 0000000..1ea870e
--- /dev/null
+++ b/libs/site-pages/.babelrc
@@ -0,0 +1,12 @@
+{
+ "presets": [
+ [
+ "@nx/react/babel",
+ {
+ "runtime": "automatic",
+ "useBuiltIns": "usage"
+ }
+ ]
+ ],
+ "plugins": []
+}
diff --git a/libs/site-pages/.eslintrc.json b/libs/site-pages/.eslintrc.json
new file mode 100644
index 0000000..a39ac5d
--- /dev/null
+++ b/libs/site-pages/.eslintrc.json
@@ -0,0 +1,18 @@
+{
+ "extends": ["plugin:@nx/react", "../../.eslintrc.json"],
+ "ignorePatterns": ["!**/*"],
+ "overrides": [
+ {
+ "files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
+ "rules": {}
+ },
+ {
+ "files": ["*.ts", "*.tsx"],
+ "rules": {}
+ },
+ {
+ "files": ["*.js", "*.jsx"],
+ "rules": {}
+ }
+ ]
+}
diff --git a/libs/site-pages/README.md b/libs/site-pages/README.md
new file mode 100644
index 0000000..5ce2cf0
--- /dev/null
+++ b/libs/site-pages/README.md
@@ -0,0 +1,7 @@
+# site-pages
+
+This library was generated with [Nx](https://nx.dev).
+
+## Running unit tests
+
+Run `nx test site-pages` to execute the unit tests via [Vitest](https://vitest.dev/).
diff --git a/libs/site-pages/jest.config.ts b/libs/site-pages/jest.config.ts
new file mode 100644
index 0000000..ffe4073
--- /dev/null
+++ b/libs/site-pages/jest.config.ts
@@ -0,0 +1,11 @@
+/* eslint-disable */
+export default {
+ displayName: 'site-pages',
+ preset: '../../jest.preset.js',
+ transform: {
+ '^(?!.*\\.(js|jsx|ts|tsx|css|json)$)': '@nx/react/plugins/jest',
+ '^.+\\.[tj]sx?$': ['babel-jest', { presets: ['@nx/react/babel'] }],
+ },
+ moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
+ coverageDirectory: '../../coverage/libs/site-pages',
+};
diff --git a/libs/site-pages/package.json b/libs/site-pages/package.json
new file mode 100644
index 0000000..bc6dfed
--- /dev/null
+++ b/libs/site-pages/package.json
@@ -0,0 +1,12 @@
+{
+ "name": "@platform/site-pages",
+ "version": "0.0.1",
+ "main": "./index.js",
+ "types": "./index.d.ts",
+ "exports": {
+ ".": {
+ "import": "./index.mjs",
+ "require": "./index.js"
+ }
+ }
+}
diff --git a/libs/site-pages/project.json b/libs/site-pages/project.json
new file mode 100644
index 0000000..1f4f430
--- /dev/null
+++ b/libs/site-pages/project.json
@@ -0,0 +1,46 @@
+{
+ "name": "site-pages",
+ "$schema": "../../node_modules/nx/schemas/project-schema.json",
+ "sourceRoot": "libs/site-pages/src",
+ "projectType": "library",
+ "tags": [],
+ "targets": {
+ "lint": {
+ "executor": "@nx/linter:eslint",
+ "outputs": ["{options.outputFile}"],
+ "options": {
+ "lintFilePatterns": ["libs/site-pages/**/*.{ts,tsx,js,jsx}"]
+ }
+ },
+ "build": {
+ "executor": "@nx/vite:build",
+ "outputs": ["{options.outputPath}"],
+ "defaultConfiguration": "production",
+ "options": {
+ "outputPath": "dist/libs/site-pages"
+ },
+ "configurations": {
+ "development": {
+ "mode": "development"
+ },
+ "production": {
+ "mode": "production"
+ }
+ }
+ },
+ "test": {
+ "executor": "@nx/jest:jest",
+ "outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
+ "options": {
+ "jestConfig": "libs/site-pages/jest.config.ts",
+ "passWithNoTests": true
+ },
+ "configurations": {
+ "ci": {
+ "ci": true,
+ "codeCoverage": true
+ }
+ }
+ }
+ }
+}
diff --git a/libs/site-pages/src/index.ts b/libs/site-pages/src/index.ts
new file mode 100644
index 0000000..2e9ed09
--- /dev/null
+++ b/libs/site-pages/src/index.ts
@@ -0,0 +1 @@
+export * from './lib/site-pages';
diff --git a/libs/site-pages/src/lib/site-pages.module.scss b/libs/site-pages/src/lib/site-pages.module.scss
new file mode 100644
index 0000000..45c2aa4
--- /dev/null
+++ b/libs/site-pages/src/lib/site-pages.module.scss
@@ -0,0 +1,7 @@
+/*
+ * Replace this with your own classes
+ *
+ * e.g.
+ * .container {
+ * }
+*/
diff --git a/libs/site-pages/src/lib/site-pages.spec.tsx b/libs/site-pages/src/lib/site-pages.spec.tsx
new file mode 100644
index 0000000..3b399c2
--- /dev/null
+++ b/libs/site-pages/src/lib/site-pages.spec.tsx
@@ -0,0 +1,10 @@
+import { render } from '@testing-library/react';
+
+import SitePages from './site-pages';
+
+describe('SitePages', () => {
+ it('should render successfully', () => {
+ const { baseElement } = render(