Skip to content

Commit c32b83f

Browse files
Merge pull request #14 from MaximSamorukov/adaptivity
Adaptivity
2 parents 75d7f31 + 925a3a1 commit c32b83f

File tree

119 files changed

+7517
-699
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+7517
-699
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,7 @@ next-env.d.ts
4242

4343
# app secrets
4444
/src/.secrets
45-
.secret_key.txt
45+
.secret_key.txt
46+
47+
# reviews
48+
reviews/

.storybook/main.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import type { StorybookConfig } from '@storybook/nextjs';
2+
3+
const config: StorybookConfig = {
4+
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'],
5+
addons: [
6+
'@storybook/addon-links',
7+
'@storybook/addon-essentials',
8+
'@storybook/addon-interactions',
9+
],
10+
framework: {
11+
name: '@storybook/nextjs',
12+
options: {},
13+
},
14+
docs: {
15+
autodocs: 'tag',
16+
},
17+
};
18+
export default config;

.storybook/preview.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import type { Preview } from '@storybook/react';
2+
import '../src/app/(website)/globals.css';
3+
4+
const preview: Preview = {
5+
parameters: {
6+
controls: {
7+
matchers: {
8+
color: /(background|color)$/i,
9+
date: /Date$/i,
10+
},
11+
},
12+
},
13+
};
14+
15+
export default preview;

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ Next.js веб-приложение для продвижения услуг м
4444

4545
**Интерфейс:**
4646

47+
- адаптивный
48+
49+
**Стек UI:**
50+
4751
- Next.js 15
4852
- React 19
4953
- Material UI
@@ -54,7 +58,7 @@ Next.js веб-приложение для продвижения услуг м
5458

5559
- Feature-Sliced Design
5660

57-
**Состояние:**
61+
**Управление состоянием:**
5862

5963
- MobX
6064

0 commit comments

Comments
 (0)