This commit is contained in:
Samandar Turgunboyev
2025-12-15 19:10:13 +05:00
parent a6beb3ecb5
commit 3e79f9e8bf
4 changed files with 2297 additions and 1439 deletions

3712
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -42,7 +42,7 @@
"dayjs": "^1.11.13",
"embla-carousel-react": "^8.6.0",
"lucide-react": "^0.503.0",
"next": "^15.5.4",
"next": "^16.0.10",
"next-intl": "^4.3.9",
"next-themes": "^0.4.6",
"react": "^19.1.1",

View File

@@ -1,5 +1,6 @@
'use client';
import { useRouter } from '@/shared/config/i18n/navigation';
import formatPhone from '@/shared/lib/formatPhone';
import { Button } from '@/shared/ui/button';
import { Input } from '@/shared/ui/input';
@@ -22,7 +23,7 @@ import {
XIcon,
} from 'lucide-react';
import Image from 'next/image';
import { useRouter, useSearchParams } from 'next/navigation';
import { useSearchParams } from 'next/navigation';
import { useEffect, useState } from 'react';
import useCategoryActive from '../lib/openCategory';
import { ChangeLang } from './ChangeLang';

View File

@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@@ -11,7 +15,7 @@
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
@@ -19,7 +23,9 @@
}
],
"paths": {
"@/*": ["./src/*"]
"@/*": [
"./src/*"
]
}
},
"include": [
@@ -27,7 +33,10 @@
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"prettier.config.cjs"
"prettier.config.cjs",
".next/dev/types/**/*.ts"
],
"exclude": ["node_modules"]
"exclude": [
"node_modules"
]
}