fix: component naming
This commit is contained in:
2
.github/workflows/main.yaml
vendored
2
.github/workflows/main.yaml
vendored
@@ -7,7 +7,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: self-hosted
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Notify Telegram start building
|
- name: Notify Telegram start building
|
||||||
uses: appleboy/telegram-action@master
|
uses: appleboy/telegram-action@master
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
const COMPANY = '«ООО ДИТРАСО»';
|
const COMPANY = '«ООО ДИТРАСО»';
|
||||||
const WEB = 'https://www.fire-expert.ru/';
|
const WEB = 'fire-expert.ru';
|
||||||
const EMAIL = 'spo-71@yandex.ru';
|
const EMAIL = 'spo-71@yandex.ru';
|
||||||
|
|
||||||
export { COMPANY, WEB, EMAIL };
|
export { COMPANY, WEB, EMAIL };
|
||||||
|
|||||||
@@ -502,7 +502,10 @@ export default function PrivacyPolicy() {
|
|||||||
<li>
|
<li>
|
||||||
12.3. Актуальная версия Политики в свободном доступе расположена в
|
12.3. Актуальная версия Политики в свободном доступе расположена в
|
||||||
сети Интернет по адресу{' '}
|
сети Интернет по адресу{' '}
|
||||||
<Link href={'/privacy-policy'}>{WEB + '/privacy-policy'}</Link>.
|
<Link
|
||||||
|
href={'/privacy-policy'}
|
||||||
|
>{`https://${WEB}/privacy-policy`}</Link>
|
||||||
|
.
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
export { default as AdvancedPhoneInput } from './advanced-phone-input';
|
export { default as AdvancedPhoneInput } from './ui';
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import s from './advanced-phone-input.module.scss';
|
import s from './styles.module.scss';
|
||||||
import { clsx } from 'clsx';
|
import { clsx } from 'clsx';
|
||||||
import { Button, PhoneInput } from '@shared/ui';
|
import { Button, PhoneInput } from '@shared/ui';
|
||||||
import { z } from 'zod';
|
import { z } from 'zod';
|
||||||
Reference in New Issue
Block a user