update
This commit is contained in:
@@ -2,7 +2,10 @@
|
||||
"permissions": {
|
||||
"allow": [
|
||||
"Bash(git restore:*)",
|
||||
"Bash(npm run lint)"
|
||||
"Bash(npm run lint)",
|
||||
"Bash(rm:*)",
|
||||
"Bash(mkdir:*)",
|
||||
"Bash(npm run build:*)"
|
||||
],
|
||||
"deny": []
|
||||
}
|
||||
|
||||
135
OTP.md
Normal file
135
OTP.md
Normal file
@@ -0,0 +1,135 @@
|
||||
# OTP API Documentation
|
||||
|
||||
## Overview
|
||||
The OTP system handles two main flows:
|
||||
1. **Login OTP**: Passwordless login using phone number
|
||||
2. **Verification OTP**: Phone number verification during registration
|
||||
|
||||
Base URL: `/server/auth`
|
||||
|
||||
## Login OTP Flow
|
||||
|
||||
### 1. Generate Login OTP
|
||||
**Endpoint:** `POST /auth/send-otp`
|
||||
|
||||
**Request Body:**
|
||||
```json
|
||||
{
|
||||
"phone": "1234567890"
|
||||
}
|
||||
```
|
||||
|
||||
**Success Response (200):**
|
||||
```json
|
||||
{
|
||||
"message": "OTP sent successfully"
|
||||
}
|
||||
```
|
||||
|
||||
**Error Responses:**
|
||||
- `400 Bad Request`: Phone number is required
|
||||
- `400 Bad Request`: Admin users should use regular login, not OTP
|
||||
- `400 Bad Request`: Please verify your phone number first (for unverified users)
|
||||
|
||||
### 2. Verify Login OTP
|
||||
**Endpoint:** `POST /auth/verify-otp`
|
||||
|
||||
**Request Body:**
|
||||
```json
|
||||
{
|
||||
"phone": "1234567890",
|
||||
"otp": "123456"
|
||||
}
|
||||
```
|
||||
|
||||
**Success Response (200):**
|
||||
```json
|
||||
{
|
||||
"message": "OTP verified successfully"
|
||||
}
|
||||
```
|
||||
|
||||
**Notes:**
|
||||
- Sets JWT token in HTTP-only cookie
|
||||
- Returns different user roles (USER, VIEWER, etc.)
|
||||
- If user exists: logs in with actual user data
|
||||
- If user doesn't exist: creates VIEWER session
|
||||
|
||||
**Error Responses:**
|
||||
- `400 Bad Request`: Phone number and OTP are required
|
||||
- `400 Bad Request`: Invalid or expired OTP
|
||||
|
||||
## Phone Verification Flow
|
||||
|
||||
### 1. Send Verification OTP
|
||||
**Endpoint:** `POST /auth/send-verification-otp`
|
||||
|
||||
**Request Body:**
|
||||
```json
|
||||
{
|
||||
"phone": "1234567890"
|
||||
}
|
||||
```
|
||||
|
||||
**Success Response (200):**
|
||||
```json
|
||||
{
|
||||
"message": "Verification OTP sent to your phone"
|
||||
}
|
||||
```
|
||||
|
||||
**Error Responses:**
|
||||
- `400 Bad Request`: Phone number is required
|
||||
- `400 Bad Request`: User not found
|
||||
- `400 Bad Request`: Phone number is already verified
|
||||
|
||||
### 2. Verify Account
|
||||
**Endpoint:** `POST /auth/verify-account`
|
||||
|
||||
**Request Body:**
|
||||
```json
|
||||
{
|
||||
"phone": "1234567890",
|
||||
"otp": "123456"
|
||||
}
|
||||
```
|
||||
|
||||
**Success Response (200):**
|
||||
```json
|
||||
{
|
||||
"message": "Phone number verified successfully"
|
||||
}
|
||||
```
|
||||
|
||||
**Error Responses:**
|
||||
- `400 Bad Request`: Phone number and OTP are required
|
||||
- `400 Bad Request`: Invalid or expired verification OTP
|
||||
|
||||
## Important Notes
|
||||
|
||||
### OTP Specifications
|
||||
- **Length**: 6 digits
|
||||
- **Login OTP Expiry**: 5 minutes
|
||||
- **Verification OTP Expiry**: 10 minutes
|
||||
- **Format**: Numeric only (100000-999999)
|
||||
|
||||
### Security Features
|
||||
- Only one active OTP per phone/purpose at a time
|
||||
- Previous OTPs are automatically deactivated when new ones are generated
|
||||
- OTPs are single-use (marked as used after verification)
|
||||
- Expired OTPs are automatically rejected
|
||||
|
||||
### User Roles & Permissions
|
||||
- **SUPER_ADMIN, EDITOR, REVIEWER, VIEWER**: Cannot use login OTP (must use regular login)
|
||||
- **USER**: Can use login OTP only after phone verification
|
||||
- **Unregistered numbers**: Get VIEWER role after OTP login
|
||||
|
||||
### SMS Integration
|
||||
- Uses SMS service for actual delivery
|
||||
- Falls back to console logging if SMS fails
|
||||
- Returns success even if SMS delivery fails (for development)
|
||||
|
||||
### Cookie Management
|
||||
- JWT tokens stored in HTTP-only cookies
|
||||
- Cookie settings: `httpOnly: true, sameSite: 'strict', secure: true`
|
||||
- Automatic cookie setting on successful OTP verification
|
||||
@@ -1 +0,0 @@
|
||||
4v15d-38tGeeprcNnzC5m
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,64 +0,0 @@
|
||||
{
|
||||
"/_not-found/page": "/_not-found",
|
||||
"/api/images/route": "/api/images",
|
||||
"/favicon.ico/route": "/favicon.ico",
|
||||
"/mgmt/page": "/mgmt",
|
||||
"/test-ad-slots/page": "/test-ad-slots",
|
||||
"/(website)/contact/page": "/contact",
|
||||
"/(website)/about-us/page": "/about-us",
|
||||
"/(website)/faq/page": "/faq",
|
||||
"/(website)/privacy-policy/page": "/privacy-policy",
|
||||
"/(website)/terms-and-conditions/page": "/terms-and-conditions",
|
||||
"/dashboard/edit-ad/line-ad/[id]/page": "/dashboard/edit-ad/line-ad/[id]",
|
||||
"/dashboard/edit-ad/poster-ad/[id]/page": "/dashboard/edit-ad/poster-ad/[id]",
|
||||
"/dashboard/edit-ad/video-ad/[id]/page": "/dashboard/edit-ad/video-ad/[id]",
|
||||
"/(website)/page": "/",
|
||||
"/dashboard/profile/page": "/dashboard/profile",
|
||||
"/dashboard/view-ad/line-ad/[id]/page": "/dashboard/view-ad/line-ad/[id]",
|
||||
"/dashboard/view-ad/poster-ad/[id]/page": "/dashboard/view-ad/poster-ad/[id]",
|
||||
"/dashboard/view-ad/video-ad/[id]/page": "/dashboard/view-ad/video-ad/[id]",
|
||||
"/register/page": "/register",
|
||||
"/dashboard/my-ads/poster-ads/page": "/dashboard/my-ads/poster-ads",
|
||||
"/dashboard/my-ads/line-ads/page": "/dashboard/my-ads/line-ads",
|
||||
"/dashboard/my-ads/video-ads/page": "/dashboard/my-ads/video-ads",
|
||||
"/dashboard/page": "/dashboard",
|
||||
"/dashboard/post-ad/line-ad/page": "/dashboard/post-ad/line-ad",
|
||||
"/dashboard/post-ad/poster-ad/page": "/dashboard/post-ad/poster-ad",
|
||||
"/dashboard/post-ad/video-ad/page": "/dashboard/post-ad/video-ad",
|
||||
"/mgmt/dashboard/ad-slots-overview/page": "/mgmt/dashboard/ad-slots-overview",
|
||||
"/mgmt/dashboard/ads-on-hold/line/page": "/mgmt/dashboard/ads-on-hold/line",
|
||||
"/mgmt/dashboard/ads-on-hold/poster/page": "/mgmt/dashboard/ads-on-hold/poster",
|
||||
"/mgmt/dashboard/categories/add/page": "/mgmt/dashboard/categories/add",
|
||||
"/mgmt/dashboard/ads-on-hold/video/page": "/mgmt/dashboard/ads-on-hold/video",
|
||||
"/mgmt/dashboard/categories/view/page": "/mgmt/dashboard/categories/view",
|
||||
"/mgmt/dashboard/configurations/about-us/page": "/mgmt/dashboard/configurations/about-us",
|
||||
"/mgmt/dashboard/configurations/ad-pricing/page": "/mgmt/dashboard/configurations/ad-pricing",
|
||||
"/mgmt/dashboard/configurations/faq/page": "/mgmt/dashboard/configurations/faq",
|
||||
"/mgmt/dashboard/configurations/contact-page/page": "/mgmt/dashboard/configurations/contact-page",
|
||||
"/mgmt/dashboard/configurations/page": "/mgmt/dashboard/configurations",
|
||||
"/mgmt/dashboard/configurations/privacy-policy/page": "/mgmt/dashboard/configurations/privacy-policy",
|
||||
"/mgmt/dashboard/configurations/tc/page": "/mgmt/dashboard/configurations/tc",
|
||||
"/mgmt/dashboard/configurations/search-slogan/page": "/mgmt/dashboard/configurations/search-slogan",
|
||||
"/mgmt/dashboard/page": "/mgmt/dashboard",
|
||||
"/mgmt/dashboard/profile/page": "/mgmt/dashboard/profile",
|
||||
"/mgmt/dashboard/published-ads/line/page": "/mgmt/dashboard/published-ads/line",
|
||||
"/mgmt/dashboard/published-ads/poster/page": "/mgmt/dashboard/published-ads/poster",
|
||||
"/mgmt/dashboard/rejected-ads/poster/page": "/mgmt/dashboard/rejected-ads/poster",
|
||||
"/mgmt/dashboard/published-ads/video/page": "/mgmt/dashboard/published-ads/video",
|
||||
"/mgmt/dashboard/rejected-ads/video/page": "/mgmt/dashboard/rejected-ads/video",
|
||||
"/mgmt/dashboard/rejected-ads/line/page": "/mgmt/dashboard/rejected-ads/line",
|
||||
"/mgmt/dashboard/reports/page": "/mgmt/dashboard/reports",
|
||||
"/mgmt/dashboard/review-ads/line/edit/[id]/page": "/mgmt/dashboard/review-ads/line/edit/[id]",
|
||||
"/mgmt/dashboard/review-ads/line/page": "/mgmt/dashboard/review-ads/line",
|
||||
"/mgmt/dashboard/review-ads/line/view/[id]/page": "/mgmt/dashboard/review-ads/line/view/[id]",
|
||||
"/mgmt/dashboard/review-ads/poster/edit/[id]/page": "/mgmt/dashboard/review-ads/poster/edit/[id]",
|
||||
"/mgmt/dashboard/review-ads/poster/page": "/mgmt/dashboard/review-ads/poster",
|
||||
"/mgmt/dashboard/review-ads/video/edit/[id]/page": "/mgmt/dashboard/review-ads/video/edit/[id]",
|
||||
"/mgmt/dashboard/review-ads/poster/view/[id]/page": "/mgmt/dashboard/review-ads/poster/view/[id]",
|
||||
"/mgmt/dashboard/review-ads/video/page": "/mgmt/dashboard/review-ads/video",
|
||||
"/mgmt/dashboard/users/page": "/mgmt/dashboard/users",
|
||||
"/mgmt/dashboard/review-ads/video/view/[id]/page": "/mgmt/dashboard/review-ads/video/view/[id]",
|
||||
"/mgmt/dashboard/users/[id]/page": "/mgmt/dashboard/users/[id]",
|
||||
"/(website)/search/page": "/search",
|
||||
"/(website)/search/results/page": "/search/results"
|
||||
}
|
||||
@@ -1,33 +0,0 @@
|
||||
{
|
||||
"polyfillFiles": [
|
||||
"static/chunks/polyfills-42372ed130431b0a.js"
|
||||
],
|
||||
"devFiles": [],
|
||||
"ampDevFiles": [],
|
||||
"lowPriorityFiles": [
|
||||
"static/4v15d-38tGeeprcNnzC5m/_buildManifest.js",
|
||||
"static/4v15d-38tGeeprcNnzC5m/_ssgManifest.js"
|
||||
],
|
||||
"rootMainFiles": [
|
||||
"static/chunks/webpack-f931933f52d916ca.js",
|
||||
"static/chunks/4bd1b696-4bc1cd2529b963c9.js",
|
||||
"static/chunks/1684-60b799b7b95666de.js",
|
||||
"static/chunks/main-app-1b3a4beb1038b1bf.js"
|
||||
],
|
||||
"rootMainFilesTree": {},
|
||||
"pages": {
|
||||
"/_app": [
|
||||
"static/chunks/webpack-f931933f52d916ca.js",
|
||||
"static/chunks/framework-82b67a6346ddd02b.js",
|
||||
"static/chunks/main-e352b9643b86f355.js",
|
||||
"static/chunks/pages/_app-0b0b6e26a728d49c.js"
|
||||
],
|
||||
"/_error": [
|
||||
"static/chunks/webpack-f931933f52d916ca.js",
|
||||
"static/chunks/framework-82b67a6346ddd02b.js",
|
||||
"static/chunks/main-e352b9643b86f355.js",
|
||||
"static/chunks/pages/_error-f94192b14105bd76.js"
|
||||
]
|
||||
},
|
||||
"ampFirstPages": []
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
{"type": "commonjs"}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,14 +0,0 @@
|
||||
{
|
||||
"..\\node_modules\\next\\dist\\client\\index.js -> ../pages/_app": {
|
||||
"id": 90472,
|
||||
"files": [
|
||||
"static/chunks/472.2c08b965bd9148e2.js"
|
||||
]
|
||||
},
|
||||
"..\\node_modules\\next\\dist\\client\\index.js -> ../pages/_error": {
|
||||
"id": 99341,
|
||||
"files": [
|
||||
"static/chunks/9341.3ca6eb08eac1d97b.js"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,310 +0,0 @@
|
||||
{
|
||||
"version": 1,
|
||||
"config": {
|
||||
"env": {},
|
||||
"webpack": null,
|
||||
"eslint": {
|
||||
"ignoreDuringBuilds": false
|
||||
},
|
||||
"typescript": {
|
||||
"ignoreBuildErrors": false,
|
||||
"tsconfigPath": "tsconfig.json"
|
||||
},
|
||||
"distDir": ".next",
|
||||
"cleanDistDir": true,
|
||||
"assetPrefix": "",
|
||||
"cacheMaxMemorySize": 52428800,
|
||||
"configOrigin": "next.config.ts",
|
||||
"useFileSystemPublicRoutes": true,
|
||||
"generateEtags": true,
|
||||
"pageExtensions": [
|
||||
"tsx",
|
||||
"ts",
|
||||
"jsx",
|
||||
"js"
|
||||
],
|
||||
"poweredByHeader": true,
|
||||
"compress": true,
|
||||
"images": {
|
||||
"deviceSizes": [
|
||||
640,
|
||||
750,
|
||||
828,
|
||||
1080,
|
||||
1200,
|
||||
1920,
|
||||
2048,
|
||||
3840
|
||||
],
|
||||
"imageSizes": [
|
||||
16,
|
||||
32,
|
||||
48,
|
||||
64,
|
||||
96,
|
||||
128,
|
||||
256,
|
||||
384
|
||||
],
|
||||
"path": "/_next/image",
|
||||
"loader": "default",
|
||||
"loaderFile": "",
|
||||
"domains": [],
|
||||
"disableStaticImages": false,
|
||||
"minimumCacheTTL": 60,
|
||||
"formats": [
|
||||
"image/webp"
|
||||
],
|
||||
"dangerouslyAllowSVG": false,
|
||||
"contentSecurityPolicy": "script-src 'none'; frame-src 'none'; sandbox;",
|
||||
"contentDispositionType": "attachment",
|
||||
"remotePatterns": [],
|
||||
"unoptimized": true
|
||||
},
|
||||
"devIndicators": {
|
||||
"position": "bottom-left"
|
||||
},
|
||||
"onDemandEntries": {
|
||||
"maxInactiveAge": 60000,
|
||||
"pagesBufferLength": 5
|
||||
},
|
||||
"amp": {
|
||||
"canonicalBase": ""
|
||||
},
|
||||
"basePath": "",
|
||||
"sassOptions": {},
|
||||
"trailingSlash": false,
|
||||
"i18n": null,
|
||||
"productionBrowserSourceMaps": false,
|
||||
"excludeDefaultMomentLocales": true,
|
||||
"serverRuntimeConfig": {},
|
||||
"publicRuntimeConfig": {},
|
||||
"reactProductionProfiling": false,
|
||||
"reactStrictMode": null,
|
||||
"reactMaxHeadersLength": 6000,
|
||||
"httpAgentOptions": {
|
||||
"keepAlive": true
|
||||
},
|
||||
"logging": {},
|
||||
"expireTime": 31536000,
|
||||
"staticPageGenerationTimeout": 60,
|
||||
"output": "standalone",
|
||||
"modularizeImports": {
|
||||
"@mui/icons-material": {
|
||||
"transform": "@mui/icons-material/{{member}}"
|
||||
},
|
||||
"lodash": {
|
||||
"transform": "lodash/{{member}}"
|
||||
}
|
||||
},
|
||||
"outputFileTracingRoot": "Z:\\paisaads\\frontend",
|
||||
"experimental": {
|
||||
"nodeMiddleware": false,
|
||||
"cacheLife": {
|
||||
"default": {
|
||||
"stale": 300,
|
||||
"revalidate": 900,
|
||||
"expire": 4294967294
|
||||
},
|
||||
"seconds": {
|
||||
"stale": 0,
|
||||
"revalidate": 1,
|
||||
"expire": 60
|
||||
},
|
||||
"minutes": {
|
||||
"stale": 300,
|
||||
"revalidate": 60,
|
||||
"expire": 3600
|
||||
},
|
||||
"hours": {
|
||||
"stale": 300,
|
||||
"revalidate": 3600,
|
||||
"expire": 86400
|
||||
},
|
||||
"days": {
|
||||
"stale": 300,
|
||||
"revalidate": 86400,
|
||||
"expire": 604800
|
||||
},
|
||||
"weeks": {
|
||||
"stale": 300,
|
||||
"revalidate": 604800,
|
||||
"expire": 2592000
|
||||
},
|
||||
"max": {
|
||||
"stale": 300,
|
||||
"revalidate": 2592000,
|
||||
"expire": 4294967294
|
||||
}
|
||||
},
|
||||
"cacheHandlers": {},
|
||||
"cssChunking": true,
|
||||
"multiZoneDraftMode": false,
|
||||
"appNavFailHandling": false,
|
||||
"prerenderEarlyExit": true,
|
||||
"serverMinification": true,
|
||||
"serverSourceMaps": false,
|
||||
"linkNoTouchStart": false,
|
||||
"caseSensitiveRoutes": false,
|
||||
"clientSegmentCache": false,
|
||||
"dynamicOnHover": false,
|
||||
"preloadEntriesOnStart": true,
|
||||
"clientRouterFilter": true,
|
||||
"clientRouterFilterRedirects": false,
|
||||
"fetchCacheKeyPrefix": "",
|
||||
"middlewarePrefetch": "flexible",
|
||||
"optimisticClientCache": true,
|
||||
"manualClientBasePath": false,
|
||||
"cpus": 15,
|
||||
"memoryBasedWorkersCount": false,
|
||||
"imgOptConcurrency": null,
|
||||
"imgOptTimeoutInSeconds": 7,
|
||||
"imgOptMaxInputPixels": 268402689,
|
||||
"imgOptSequentialRead": null,
|
||||
"isrFlushToDisk": true,
|
||||
"workerThreads": false,
|
||||
"optimizeCss": false,
|
||||
"nextScriptWorkers": false,
|
||||
"scrollRestoration": false,
|
||||
"externalDir": false,
|
||||
"disableOptimizedLoading": false,
|
||||
"gzipSize": true,
|
||||
"craCompat": false,
|
||||
"esmExternals": true,
|
||||
"fullySpecified": false,
|
||||
"swcTraceProfiling": false,
|
||||
"forceSwcTransforms": false,
|
||||
"largePageDataBytes": 128000,
|
||||
"typedRoutes": false,
|
||||
"typedEnv": false,
|
||||
"parallelServerCompiles": false,
|
||||
"parallelServerBuildTraces": false,
|
||||
"ppr": false,
|
||||
"authInterrupts": false,
|
||||
"webpackMemoryOptimizations": false,
|
||||
"optimizeServerReact": true,
|
||||
"useEarlyImport": false,
|
||||
"viewTransition": false,
|
||||
"routerBFCache": false,
|
||||
"staleTimes": {
|
||||
"dynamic": 0,
|
||||
"static": 300
|
||||
},
|
||||
"serverComponentsHmrCache": true,
|
||||
"staticGenerationMaxConcurrency": 8,
|
||||
"staticGenerationMinPagesPerWorker": 25,
|
||||
"dynamicIO": false,
|
||||
"inlineCss": false,
|
||||
"useCache": false,
|
||||
"optimizePackageImports": [
|
||||
"lucide-react",
|
||||
"date-fns",
|
||||
"lodash-es",
|
||||
"ramda",
|
||||
"antd",
|
||||
"react-bootstrap",
|
||||
"ahooks",
|
||||
"@ant-design/icons",
|
||||
"@headlessui/react",
|
||||
"@headlessui-float/react",
|
||||
"@heroicons/react/20/solid",
|
||||
"@heroicons/react/24/solid",
|
||||
"@heroicons/react/24/outline",
|
||||
"@visx/visx",
|
||||
"@tremor/react",
|
||||
"rxjs",
|
||||
"@mui/material",
|
||||
"@mui/icons-material",
|
||||
"recharts",
|
||||
"react-use",
|
||||
"effect",
|
||||
"@effect/schema",
|
||||
"@effect/platform",
|
||||
"@effect/platform-node",
|
||||
"@effect/platform-browser",
|
||||
"@effect/platform-bun",
|
||||
"@effect/sql",
|
||||
"@effect/sql-mssql",
|
||||
"@effect/sql-mysql2",
|
||||
"@effect/sql-pg",
|
||||
"@effect/sql-squlite-node",
|
||||
"@effect/sql-squlite-bun",
|
||||
"@effect/sql-squlite-wasm",
|
||||
"@effect/sql-squlite-react-native",
|
||||
"@effect/rpc",
|
||||
"@effect/rpc-http",
|
||||
"@effect/typeclass",
|
||||
"@effect/experimental",
|
||||
"@effect/opentelemetry",
|
||||
"@material-ui/core",
|
||||
"@material-ui/icons",
|
||||
"@tabler/icons-react",
|
||||
"mui-core",
|
||||
"react-icons/ai",
|
||||
"react-icons/bi",
|
||||
"react-icons/bs",
|
||||
"react-icons/cg",
|
||||
"react-icons/ci",
|
||||
"react-icons/di",
|
||||
"react-icons/fa",
|
||||
"react-icons/fa6",
|
||||
"react-icons/fc",
|
||||
"react-icons/fi",
|
||||
"react-icons/gi",
|
||||
"react-icons/go",
|
||||
"react-icons/gr",
|
||||
"react-icons/hi",
|
||||
"react-icons/hi2",
|
||||
"react-icons/im",
|
||||
"react-icons/io",
|
||||
"react-icons/io5",
|
||||
"react-icons/lia",
|
||||
"react-icons/lib",
|
||||
"react-icons/lu",
|
||||
"react-icons/md",
|
||||
"react-icons/pi",
|
||||
"react-icons/ri",
|
||||
"react-icons/rx",
|
||||
"react-icons/si",
|
||||
"react-icons/sl",
|
||||
"react-icons/tb",
|
||||
"react-icons/tfi",
|
||||
"react-icons/ti",
|
||||
"react-icons/vsc",
|
||||
"react-icons/wi"
|
||||
],
|
||||
"trustHostHeader": false,
|
||||
"isExperimentalCompile": false
|
||||
},
|
||||
"htmlLimitedBots": "Mediapartners-Google|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti",
|
||||
"bundlePagesRouterDependencies": false,
|
||||
"configFileName": "next.config.ts",
|
||||
"turbopack": {
|
||||
"root": "Z:\\paisaads\\frontend"
|
||||
}
|
||||
},
|
||||
"appDir": "Z:\\paisaads\\frontend",
|
||||
"relativeAppDir": "",
|
||||
"files": [
|
||||
".next\\routes-manifest.json",
|
||||
".next\\server\\pages-manifest.json",
|
||||
".next\\build-manifest.json",
|
||||
".next\\prerender-manifest.json",
|
||||
".next\\server\\functions-config-manifest.json",
|
||||
".next\\server\\middleware-manifest.json",
|
||||
".next\\server\\middleware-build-manifest.js",
|
||||
".next\\server\\middleware-react-loadable-manifest.js",
|
||||
".next\\react-loadable-manifest.json",
|
||||
".next\\server\\app-paths-manifest.json",
|
||||
".next\\app-path-routes-manifest.json",
|
||||
".next\\app-build-manifest.json",
|
||||
".next\\server\\server-reference-manifest.js",
|
||||
".next\\server\\server-reference-manifest.json",
|
||||
".next\\BUILD_ID",
|
||||
".next\\server\\next-font-manifest.js",
|
||||
".next\\server\\next-font-manifest.json"
|
||||
],
|
||||
"ignore": [
|
||||
"node_modules\\next\\dist\\compiled\\@ampproject\\toolbox-optimizer\\**\\*"
|
||||
]
|
||||
}
|
||||
@@ -1,430 +0,0 @@
|
||||
{
|
||||
"version": 3,
|
||||
"pages404": true,
|
||||
"caseSensitive": false,
|
||||
"basePath": "",
|
||||
"redirects": [
|
||||
{
|
||||
"source": "/:path+/",
|
||||
"destination": "/:path+",
|
||||
"internal": true,
|
||||
"statusCode": 308,
|
||||
"regex": "^(?:/((?:[^/]+?)(?:/(?:[^/]+?))*))/$"
|
||||
}
|
||||
],
|
||||
"headers": [],
|
||||
"dynamicRoutes": [
|
||||
{
|
||||
"page": "/dashboard/edit-ad/line-ad/[id]",
|
||||
"regex": "^/dashboard/edit\\-ad/line\\-ad/([^/]+?)(?:/)?$",
|
||||
"routeKeys": {
|
||||
"nxtPid": "nxtPid"
|
||||
},
|
||||
"namedRegex": "^/dashboard/edit\\-ad/line\\-ad/(?<nxtPid>[^/]+?)(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/dashboard/edit-ad/poster-ad/[id]",
|
||||
"regex": "^/dashboard/edit\\-ad/poster\\-ad/([^/]+?)(?:/)?$",
|
||||
"routeKeys": {
|
||||
"nxtPid": "nxtPid"
|
||||
},
|
||||
"namedRegex": "^/dashboard/edit\\-ad/poster\\-ad/(?<nxtPid>[^/]+?)(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/dashboard/edit-ad/video-ad/[id]",
|
||||
"regex": "^/dashboard/edit\\-ad/video\\-ad/([^/]+?)(?:/)?$",
|
||||
"routeKeys": {
|
||||
"nxtPid": "nxtPid"
|
||||
},
|
||||
"namedRegex": "^/dashboard/edit\\-ad/video\\-ad/(?<nxtPid>[^/]+?)(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/dashboard/view-ad/line-ad/[id]",
|
||||
"regex": "^/dashboard/view\\-ad/line\\-ad/([^/]+?)(?:/)?$",
|
||||
"routeKeys": {
|
||||
"nxtPid": "nxtPid"
|
||||
},
|
||||
"namedRegex": "^/dashboard/view\\-ad/line\\-ad/(?<nxtPid>[^/]+?)(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/dashboard/view-ad/poster-ad/[id]",
|
||||
"regex": "^/dashboard/view\\-ad/poster\\-ad/([^/]+?)(?:/)?$",
|
||||
"routeKeys": {
|
||||
"nxtPid": "nxtPid"
|
||||
},
|
||||
"namedRegex": "^/dashboard/view\\-ad/poster\\-ad/(?<nxtPid>[^/]+?)(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/dashboard/view-ad/video-ad/[id]",
|
||||
"regex": "^/dashboard/view\\-ad/video\\-ad/([^/]+?)(?:/)?$",
|
||||
"routeKeys": {
|
||||
"nxtPid": "nxtPid"
|
||||
},
|
||||
"namedRegex": "^/dashboard/view\\-ad/video\\-ad/(?<nxtPid>[^/]+?)(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/review-ads/line/edit/[id]",
|
||||
"regex": "^/mgmt/dashboard/review\\-ads/line/edit/([^/]+?)(?:/)?$",
|
||||
"routeKeys": {
|
||||
"nxtPid": "nxtPid"
|
||||
},
|
||||
"namedRegex": "^/mgmt/dashboard/review\\-ads/line/edit/(?<nxtPid>[^/]+?)(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/review-ads/line/view/[id]",
|
||||
"regex": "^/mgmt/dashboard/review\\-ads/line/view/([^/]+?)(?:/)?$",
|
||||
"routeKeys": {
|
||||
"nxtPid": "nxtPid"
|
||||
},
|
||||
"namedRegex": "^/mgmt/dashboard/review\\-ads/line/view/(?<nxtPid>[^/]+?)(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/review-ads/poster/edit/[id]",
|
||||
"regex": "^/mgmt/dashboard/review\\-ads/poster/edit/([^/]+?)(?:/)?$",
|
||||
"routeKeys": {
|
||||
"nxtPid": "nxtPid"
|
||||
},
|
||||
"namedRegex": "^/mgmt/dashboard/review\\-ads/poster/edit/(?<nxtPid>[^/]+?)(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/review-ads/poster/view/[id]",
|
||||
"regex": "^/mgmt/dashboard/review\\-ads/poster/view/([^/]+?)(?:/)?$",
|
||||
"routeKeys": {
|
||||
"nxtPid": "nxtPid"
|
||||
},
|
||||
"namedRegex": "^/mgmt/dashboard/review\\-ads/poster/view/(?<nxtPid>[^/]+?)(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/review-ads/video/edit/[id]",
|
||||
"regex": "^/mgmt/dashboard/review\\-ads/video/edit/([^/]+?)(?:/)?$",
|
||||
"routeKeys": {
|
||||
"nxtPid": "nxtPid"
|
||||
},
|
||||
"namedRegex": "^/mgmt/dashboard/review\\-ads/video/edit/(?<nxtPid>[^/]+?)(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/review-ads/video/view/[id]",
|
||||
"regex": "^/mgmt/dashboard/review\\-ads/video/view/([^/]+?)(?:/)?$",
|
||||
"routeKeys": {
|
||||
"nxtPid": "nxtPid"
|
||||
},
|
||||
"namedRegex": "^/mgmt/dashboard/review\\-ads/video/view/(?<nxtPid>[^/]+?)(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/users/[id]",
|
||||
"regex": "^/mgmt/dashboard/users/([^/]+?)(?:/)?$",
|
||||
"routeKeys": {
|
||||
"nxtPid": "nxtPid"
|
||||
},
|
||||
"namedRegex": "^/mgmt/dashboard/users/(?<nxtPid>[^/]+?)(?:/)?$"
|
||||
}
|
||||
],
|
||||
"staticRoutes": [
|
||||
{
|
||||
"page": "/",
|
||||
"regex": "^/(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/_not-found",
|
||||
"regex": "^/_not\\-found(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/_not\\-found(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/about-us",
|
||||
"regex": "^/about\\-us(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/about\\-us(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/contact",
|
||||
"regex": "^/contact(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/contact(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/dashboard",
|
||||
"regex": "^/dashboard(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/dashboard(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/dashboard/my-ads/line-ads",
|
||||
"regex": "^/dashboard/my\\-ads/line\\-ads(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/dashboard/my\\-ads/line\\-ads(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/dashboard/my-ads/poster-ads",
|
||||
"regex": "^/dashboard/my\\-ads/poster\\-ads(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/dashboard/my\\-ads/poster\\-ads(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/dashboard/my-ads/video-ads",
|
||||
"regex": "^/dashboard/my\\-ads/video\\-ads(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/dashboard/my\\-ads/video\\-ads(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/dashboard/post-ad/line-ad",
|
||||
"regex": "^/dashboard/post\\-ad/line\\-ad(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/dashboard/post\\-ad/line\\-ad(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/dashboard/post-ad/poster-ad",
|
||||
"regex": "^/dashboard/post\\-ad/poster\\-ad(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/dashboard/post\\-ad/poster\\-ad(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/dashboard/post-ad/video-ad",
|
||||
"regex": "^/dashboard/post\\-ad/video\\-ad(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/dashboard/post\\-ad/video\\-ad(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/dashboard/profile",
|
||||
"regex": "^/dashboard/profile(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/dashboard/profile(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/faq",
|
||||
"regex": "^/faq(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/faq(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/favicon.ico",
|
||||
"regex": "^/favicon\\.ico(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/favicon\\.ico(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt",
|
||||
"regex": "^/mgmt(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard",
|
||||
"regex": "^/mgmt/dashboard(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/ad-slots-overview",
|
||||
"regex": "^/mgmt/dashboard/ad\\-slots\\-overview(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/ad\\-slots\\-overview(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/ads-on-hold/line",
|
||||
"regex": "^/mgmt/dashboard/ads\\-on\\-hold/line(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/ads\\-on\\-hold/line(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/ads-on-hold/poster",
|
||||
"regex": "^/mgmt/dashboard/ads\\-on\\-hold/poster(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/ads\\-on\\-hold/poster(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/ads-on-hold/video",
|
||||
"regex": "^/mgmt/dashboard/ads\\-on\\-hold/video(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/ads\\-on\\-hold/video(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/categories/add",
|
||||
"regex": "^/mgmt/dashboard/categories/add(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/categories/add(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/categories/view",
|
||||
"regex": "^/mgmt/dashboard/categories/view(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/categories/view(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/configurations",
|
||||
"regex": "^/mgmt/dashboard/configurations(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/configurations(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/configurations/about-us",
|
||||
"regex": "^/mgmt/dashboard/configurations/about\\-us(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/configurations/about\\-us(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/configurations/ad-pricing",
|
||||
"regex": "^/mgmt/dashboard/configurations/ad\\-pricing(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/configurations/ad\\-pricing(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/configurations/contact-page",
|
||||
"regex": "^/mgmt/dashboard/configurations/contact\\-page(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/configurations/contact\\-page(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/configurations/faq",
|
||||
"regex": "^/mgmt/dashboard/configurations/faq(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/configurations/faq(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/configurations/privacy-policy",
|
||||
"regex": "^/mgmt/dashboard/configurations/privacy\\-policy(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/configurations/privacy\\-policy(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/configurations/search-slogan",
|
||||
"regex": "^/mgmt/dashboard/configurations/search\\-slogan(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/configurations/search\\-slogan(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/configurations/tc",
|
||||
"regex": "^/mgmt/dashboard/configurations/tc(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/configurations/tc(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/profile",
|
||||
"regex": "^/mgmt/dashboard/profile(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/profile(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/published-ads/line",
|
||||
"regex": "^/mgmt/dashboard/published\\-ads/line(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/published\\-ads/line(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/published-ads/poster",
|
||||
"regex": "^/mgmt/dashboard/published\\-ads/poster(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/published\\-ads/poster(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/published-ads/video",
|
||||
"regex": "^/mgmt/dashboard/published\\-ads/video(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/published\\-ads/video(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/rejected-ads/line",
|
||||
"regex": "^/mgmt/dashboard/rejected\\-ads/line(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/rejected\\-ads/line(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/rejected-ads/poster",
|
||||
"regex": "^/mgmt/dashboard/rejected\\-ads/poster(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/rejected\\-ads/poster(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/rejected-ads/video",
|
||||
"regex": "^/mgmt/dashboard/rejected\\-ads/video(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/rejected\\-ads/video(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/reports",
|
||||
"regex": "^/mgmt/dashboard/reports(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/reports(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/review-ads/line",
|
||||
"regex": "^/mgmt/dashboard/review\\-ads/line(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/review\\-ads/line(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/review-ads/poster",
|
||||
"regex": "^/mgmt/dashboard/review\\-ads/poster(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/review\\-ads/poster(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/review-ads/video",
|
||||
"regex": "^/mgmt/dashboard/review\\-ads/video(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/review\\-ads/video(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/mgmt/dashboard/users",
|
||||
"regex": "^/mgmt/dashboard/users(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/mgmt/dashboard/users(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/privacy-policy",
|
||||
"regex": "^/privacy\\-policy(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/privacy\\-policy(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/register",
|
||||
"regex": "^/register(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/register(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/search",
|
||||
"regex": "^/search(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/search(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/search/results",
|
||||
"regex": "^/search/results(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/search/results(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/terms-and-conditions",
|
||||
"regex": "^/terms\\-and\\-conditions(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/terms\\-and\\-conditions(?:/)?$"
|
||||
},
|
||||
{
|
||||
"page": "/test-ad-slots",
|
||||
"regex": "^/test\\-ad\\-slots(?:/)?$",
|
||||
"routeKeys": {},
|
||||
"namedRegex": "^/test\\-ad\\-slots(?:/)?$"
|
||||
}
|
||||
],
|
||||
"dataRoutes": [],
|
||||
"rsc": {
|
||||
"header": "RSC",
|
||||
"varyHeader": "RSC, Next-Router-State-Tree, Next-Router-Prefetch, Next-Router-Segment-Prefetch",
|
||||
"prefetchHeader": "Next-Router-Prefetch",
|
||||
"didPostponeHeader": "x-nextjs-postponed",
|
||||
"contentTypeHeader": "text/x-component",
|
||||
"suffix": ".rsc",
|
||||
"prefetchSuffix": ".prefetch.rsc",
|
||||
"prefetchSegmentHeader": "Next-Router-Segment-Prefetch",
|
||||
"prefetchSegmentSuffix": ".segment.rsc",
|
||||
"prefetchSegmentDirSuffix": ".segments"
|
||||
},
|
||||
"rewriteHeaders": {
|
||||
"pathHeader": "x-nextjs-rewritten-path",
|
||||
"queryHeader": "x-nextjs-rewritten-query"
|
||||
},
|
||||
"rewrites": []
|
||||
}
|
||||
@@ -1,64 +0,0 @@
|
||||
{
|
||||
"/_not-found/page": "app/_not-found/page.js",
|
||||
"/api/images/route": "app/api/images/route.js",
|
||||
"/favicon.ico/route": "app/favicon.ico/route.js",
|
||||
"/mgmt/page": "app/mgmt/page.js",
|
||||
"/test-ad-slots/page": "app/test-ad-slots/page.js",
|
||||
"/(website)/contact/page": "app/(website)/contact/page.js",
|
||||
"/(website)/about-us/page": "app/(website)/about-us/page.js",
|
||||
"/(website)/faq/page": "app/(website)/faq/page.js",
|
||||
"/(website)/privacy-policy/page": "app/(website)/privacy-policy/page.js",
|
||||
"/(website)/terms-and-conditions/page": "app/(website)/terms-and-conditions/page.js",
|
||||
"/dashboard/edit-ad/line-ad/[id]/page": "app/dashboard/edit-ad/line-ad/[id]/page.js",
|
||||
"/dashboard/edit-ad/poster-ad/[id]/page": "app/dashboard/edit-ad/poster-ad/[id]/page.js",
|
||||
"/dashboard/edit-ad/video-ad/[id]/page": "app/dashboard/edit-ad/video-ad/[id]/page.js",
|
||||
"/(website)/page": "app/(website)/page.js",
|
||||
"/dashboard/profile/page": "app/dashboard/profile/page.js",
|
||||
"/dashboard/view-ad/line-ad/[id]/page": "app/dashboard/view-ad/line-ad/[id]/page.js",
|
||||
"/dashboard/view-ad/poster-ad/[id]/page": "app/dashboard/view-ad/poster-ad/[id]/page.js",
|
||||
"/dashboard/view-ad/video-ad/[id]/page": "app/dashboard/view-ad/video-ad/[id]/page.js",
|
||||
"/register/page": "app/register/page.js",
|
||||
"/dashboard/my-ads/poster-ads/page": "app/dashboard/my-ads/poster-ads/page.js",
|
||||
"/dashboard/my-ads/line-ads/page": "app/dashboard/my-ads/line-ads/page.js",
|
||||
"/dashboard/my-ads/video-ads/page": "app/dashboard/my-ads/video-ads/page.js",
|
||||
"/dashboard/page": "app/dashboard/page.js",
|
||||
"/dashboard/post-ad/line-ad/page": "app/dashboard/post-ad/line-ad/page.js",
|
||||
"/dashboard/post-ad/poster-ad/page": "app/dashboard/post-ad/poster-ad/page.js",
|
||||
"/dashboard/post-ad/video-ad/page": "app/dashboard/post-ad/video-ad/page.js",
|
||||
"/mgmt/dashboard/ad-slots-overview/page": "app/mgmt/dashboard/ad-slots-overview/page.js",
|
||||
"/mgmt/dashboard/ads-on-hold/line/page": "app/mgmt/dashboard/ads-on-hold/line/page.js",
|
||||
"/mgmt/dashboard/ads-on-hold/poster/page": "app/mgmt/dashboard/ads-on-hold/poster/page.js",
|
||||
"/mgmt/dashboard/categories/add/page": "app/mgmt/dashboard/categories/add/page.js",
|
||||
"/mgmt/dashboard/ads-on-hold/video/page": "app/mgmt/dashboard/ads-on-hold/video/page.js",
|
||||
"/mgmt/dashboard/categories/view/page": "app/mgmt/dashboard/categories/view/page.js",
|
||||
"/mgmt/dashboard/configurations/about-us/page": "app/mgmt/dashboard/configurations/about-us/page.js",
|
||||
"/mgmt/dashboard/configurations/ad-pricing/page": "app/mgmt/dashboard/configurations/ad-pricing/page.js",
|
||||
"/mgmt/dashboard/configurations/faq/page": "app/mgmt/dashboard/configurations/faq/page.js",
|
||||
"/mgmt/dashboard/configurations/contact-page/page": "app/mgmt/dashboard/configurations/contact-page/page.js",
|
||||
"/mgmt/dashboard/configurations/page": "app/mgmt/dashboard/configurations/page.js",
|
||||
"/mgmt/dashboard/configurations/privacy-policy/page": "app/mgmt/dashboard/configurations/privacy-policy/page.js",
|
||||
"/mgmt/dashboard/configurations/tc/page": "app/mgmt/dashboard/configurations/tc/page.js",
|
||||
"/mgmt/dashboard/configurations/search-slogan/page": "app/mgmt/dashboard/configurations/search-slogan/page.js",
|
||||
"/mgmt/dashboard/page": "app/mgmt/dashboard/page.js",
|
||||
"/mgmt/dashboard/profile/page": "app/mgmt/dashboard/profile/page.js",
|
||||
"/mgmt/dashboard/published-ads/line/page": "app/mgmt/dashboard/published-ads/line/page.js",
|
||||
"/mgmt/dashboard/published-ads/poster/page": "app/mgmt/dashboard/published-ads/poster/page.js",
|
||||
"/mgmt/dashboard/rejected-ads/poster/page": "app/mgmt/dashboard/rejected-ads/poster/page.js",
|
||||
"/mgmt/dashboard/published-ads/video/page": "app/mgmt/dashboard/published-ads/video/page.js",
|
||||
"/mgmt/dashboard/rejected-ads/video/page": "app/mgmt/dashboard/rejected-ads/video/page.js",
|
||||
"/mgmt/dashboard/rejected-ads/line/page": "app/mgmt/dashboard/rejected-ads/line/page.js",
|
||||
"/mgmt/dashboard/reports/page": "app/mgmt/dashboard/reports/page.js",
|
||||
"/mgmt/dashboard/review-ads/line/edit/[id]/page": "app/mgmt/dashboard/review-ads/line/edit/[id]/page.js",
|
||||
"/mgmt/dashboard/review-ads/line/page": "app/mgmt/dashboard/review-ads/line/page.js",
|
||||
"/mgmt/dashboard/review-ads/line/view/[id]/page": "app/mgmt/dashboard/review-ads/line/view/[id]/page.js",
|
||||
"/mgmt/dashboard/review-ads/poster/edit/[id]/page": "app/mgmt/dashboard/review-ads/poster/edit/[id]/page.js",
|
||||
"/mgmt/dashboard/review-ads/poster/page": "app/mgmt/dashboard/review-ads/poster/page.js",
|
||||
"/mgmt/dashboard/review-ads/video/edit/[id]/page": "app/mgmt/dashboard/review-ads/video/edit/[id]/page.js",
|
||||
"/mgmt/dashboard/review-ads/poster/view/[id]/page": "app/mgmt/dashboard/review-ads/poster/view/[id]/page.js",
|
||||
"/mgmt/dashboard/review-ads/video/page": "app/mgmt/dashboard/review-ads/video/page.js",
|
||||
"/mgmt/dashboard/users/page": "app/mgmt/dashboard/users/page.js",
|
||||
"/mgmt/dashboard/review-ads/video/view/[id]/page": "app/mgmt/dashboard/review-ads/video/view/[id]/page.js",
|
||||
"/mgmt/dashboard/users/[id]/page": "app/mgmt/dashboard/users/[id]/page.js",
|
||||
"/(website)/search/page": "app/(website)/search/page.js",
|
||||
"/(website)/search/results/page": "app/(website)/search/results/page.js"
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
{"version":1,"files":["../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/package.json","../../../../package.json","../../../chunks/157.js","../../../chunks/1758.js","../../../chunks/2900.js","../../../chunks/3252.js","../../../chunks/3886.js","../../../chunks/4065.js","../../../chunks/4764.js","../../../chunks/6241.js","../../../chunks/7584.js","../../../chunks/7719.js","../../../chunks/8013.js","../../../webpack-runtime.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
{"version":1,"files":["../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/package.json","../../../../package.json","../../../chunks/1758.js","../../../chunks/2900.js","../../../chunks/3252.js","../../../chunks/3886.js","../../../chunks/4065.js","../../../chunks/4764.js","../../../chunks/6241.js","../../../chunks/7584.js","../../../chunks/7719.js","../../../chunks/8013.js","../../../webpack-runtime.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
{"version":1,"files":["../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/package.json","../../../../package.json","../../../chunks/1758.js","../../../chunks/2230.js","../../../chunks/2900.js","../../../chunks/3252.js","../../../chunks/3886.js","../../../chunks/4065.js","../../../chunks/4764.js","../../../chunks/6241.js","../../../chunks/7584.js","../../../chunks/7719.js","../../../chunks/8013.js","../../../webpack-runtime.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
{"version":1,"files":["../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/package.json","../../../package.json","../../chunks/1308.js","../../chunks/1758.js","../../chunks/2900.js","../../chunks/3252.js","../../chunks/3886.js","../../chunks/4065.js","../../chunks/4764.js","../../chunks/6241.js","../../chunks/7162.js","../../chunks/7584.js","../../chunks/7719.js","../../chunks/8013.js","../../chunks/8373.js","../../webpack-runtime.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
{"version":1,"files":["../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/package.json","../../../../package.json","../../../chunks/1758.js","../../../chunks/2900.js","../../../chunks/3252.js","../../../chunks/3886.js","../../../chunks/4065.js","../../../chunks/4764.js","../../../chunks/6241.js","../../../chunks/7584.js","../../../chunks/7719.js","../../../chunks/8013.js","../../../webpack-runtime.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
{"version":1,"files":["../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/package.json","../../../../package.json","../../../chunks/1758.js","../../../chunks/2900.js","../../../chunks/3252.js","../../../chunks/3886.js","../../../chunks/4065.js","../../../chunks/4764.js","../../../chunks/6241.js","../../../chunks/7162.js","../../../chunks/7584.js","../../../chunks/7719.js","../../../chunks/8013.js","../../../chunks/8373.js","../../../webpack-runtime.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
{"version":1,"files":["../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../node_modules/next/package.json","../../../../../package.json","../../../../chunks/1308.js","../../../../chunks/1758.js","../../../../chunks/2900.js","../../../../chunks/3252.js","../../../../chunks/3886.js","../../../../chunks/4065.js","../../../../chunks/4764.js","../../../../chunks/6241.js","../../../../chunks/7584.js","../../../../chunks/7719.js","../../../../chunks/8013.js","../../../../chunks/8373.js","../../../../webpack-runtime.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
{"version":1,"files":["../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/package.json","../../../../package.json","../../../chunks/1758.js","../../../chunks/2900.js","../../../chunks/3252.js","../../../chunks/3886.js","../../../chunks/4065.js","../../../chunks/4764.js","../../../chunks/6241.js","../../../chunks/7584.js","../../../chunks/7719.js","../../../chunks/8013.js","../../../webpack-runtime.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,8 +0,0 @@
|
||||
{
|
||||
"status": 404,
|
||||
"headers": {
|
||||
"x-nextjs-stale-time": "4294967294",
|
||||
"x-nextjs-prerender": "1",
|
||||
"x-next-cache-tags": "_N_T_/layout,_N_T_/_not-found/layout,_N_T_/_not-found/page,_N_T_/_not-found"
|
||||
}
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[331,["6671","static/chunks/6671-dcfdf79cfb09c0b6.js","8571","static/chunks/8571-ce32b7a58bb742f8.js","7177","static/chunks/app/layout-b6a4fbb25b6757a0.js"],"default"]
|
||||
3:I[87555,[],""]
|
||||
4:I[31295,[],""]
|
||||
5:I[59665,[],"MetadataBoundary"]
|
||||
7:I[59665,[],"OutletBoundary"]
|
||||
a:I[74911,[],"AsyncMetadataOutlet"]
|
||||
c:I[59665,[],"ViewportBoundary"]
|
||||
e:I[26614,[],""]
|
||||
:HL["/_next/static/css/931b179cff3131dc.css","style"]
|
||||
:HL["/_next/static/css/a05813e53b976176.css","style"]
|
||||
:HL["/_next/static/css/d4cfc5b96bcde986.css","style"]
|
||||
0:{"P":null,"b":"4v15d-38tGeeprcNnzC5m","p":"","c":["","_not-found"],"i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/931b179cff3131dc.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/css/a05813e53b976176.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","2",{"rel":"stylesheet","href":"/_next/static/css/d4cfc5b96bcde986.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"className":"__className_e8ce0c","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":["/_not-found",["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:1:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:1:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:1:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:1:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],["$","$L5",null,{"children":"$L6"}],null,["$","$L7",null,{"children":["$L8","$L9",["$","$La",null,{"promise":"$@b"}]]}]]}],{},null,false]},null,false]},null,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$1","xiP35Cx3peEYtWgE2soER",{"children":[["$","$Lc",null,{"children":"$Ld"}],null]}],null]}],false]],"m":"$undefined","G":["$e","$undefined"],"s":false,"S":true}
|
||||
f:"$Sreact.suspense"
|
||||
10:I[74911,[],"AsyncMetadata"]
|
||||
6:["$","$f",null,{"fallback":null,"children":["$","$L10",null,{"promise":"$@11"}]}]
|
||||
9:null
|
||||
d:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
8:null
|
||||
11:{"metadata":[["$","title","0",{"children":"PaisaAds - Advertisement Platform"}],["$","meta","1",{"name":"description","content":"Find and post advertisements across multiple categories"}]],"error":null,"digest":"$undefined"}
|
||||
b:{"metadata":"$11:metadata","error":null,"digest":"$undefined"}
|
||||
@@ -1 +0,0 @@
|
||||
(()=>{var e={};e.id=9492,e.ids=[9492],e.modules={3295:e=>{"use strict";e.exports=require("next/dist/server/app-render/after-task-async-storage.external.js")},10846:e=>{"use strict";e.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},12452:(e,r,t)=>{Promise.resolve().then(t.bind(t,18687))},18687:(e,r,t)=>{"use strict";t.d(r,{default:()=>d});var n=t(60687),s=t(39091),o=t(8693);t(43210);var i=t(52581);function d({children:e}){let r=new s.E;return(0,n.jsxs)(o.Ht,{client:r,children:[e,(0,n.jsx)(i.l$,{})]})}},19121:e=>{"use strict";e.exports=require("next/dist/server/app-render/action-async-storage.external.js")},28157:(e,r,t)=>{"use strict";t.d(r,{default:()=>n});let n=(0,t(12907).registerClientReference)(function(){throw Error("Attempted to call the default export of \"Z:\\\\paisaads\\\\frontend\\\\src\\\\app\\\\root_provider.tsx\" from the server, but it's on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"Z:\\paisaads\\frontend\\src\\app\\root_provider.tsx","default")},29294:e=>{"use strict";e.exports=require("next/dist/server/app-render/work-async-storage.external.js")},33873:e=>{"use strict";e.exports=require("path")},47364:(e,r,t)=>{Promise.resolve().then(t.bind(t,28157))},58057:(e,r,t)=>{Promise.resolve().then(t.t.bind(t,86346,23)),Promise.resolve().then(t.t.bind(t,27924,23)),Promise.resolve().then(t.t.bind(t,35656,23)),Promise.resolve().then(t.t.bind(t,40099,23)),Promise.resolve().then(t.t.bind(t,38243,23)),Promise.resolve().then(t.t.bind(t,28827,23)),Promise.resolve().then(t.t.bind(t,62763,23)),Promise.resolve().then(t.t.bind(t,97173,23))},61135:()=>{},63033:e=>{"use strict";e.exports=require("next/dist/server/app-render/work-unit-async-storage.external.js")},89013:(e,r,t)=>{"use strict";t.r(r),t.d(r,{GlobalError:()=>i.a,__next_app__:()=>u,pages:()=>p,routeModule:()=>c,tree:()=>l});var n=t(65239),s=t(48088),o=t(88170),i=t.n(o),d=t(30893),a={};for(let e in d)0>["default","tree","pages","GlobalError","__next_app__","routeModule"].indexOf(e)&&(a[e]=()=>d[e]);t.d(r,a);let l={children:["",{children:["/_not-found",{children:["__PAGE__",{},{page:[()=>Promise.resolve().then(t.t.bind(t,57398,23)),"next/dist/client/components/not-found-error"]}]},{}]},{layout:[()=>Promise.resolve().then(t.bind(t,94431)),"Z:\\paisaads\\frontend\\src\\app\\layout.tsx"],"not-found":[()=>Promise.resolve().then(t.t.bind(t,57398,23)),"next/dist/client/components/not-found-error"],forbidden:[()=>Promise.resolve().then(t.t.bind(t,89999,23)),"next/dist/client/components/forbidden-error"],unauthorized:[()=>Promise.resolve().then(t.t.bind(t,65284,23)),"next/dist/client/components/unauthorized-error"]}]}.children,p=[],u={require:t,loadChunk:()=>Promise.resolve()},c=new n.AppPageRouteModule({definition:{kind:s.RouteKind.APP_PAGE,page:"/_not-found/page",pathname:"/_not-found",bundlePath:"",filename:"",appPaths:[]},userland:{loaderTree:l}})},92905:(e,r,t)=>{Promise.resolve().then(t.t.bind(t,16444,23)),Promise.resolve().then(t.t.bind(t,16042,23)),Promise.resolve().then(t.t.bind(t,88170,23)),Promise.resolve().then(t.t.bind(t,49477,23)),Promise.resolve().then(t.t.bind(t,29345,23)),Promise.resolve().then(t.t.bind(t,12089,23)),Promise.resolve().then(t.t.bind(t,46577,23)),Promise.resolve().then(t.t.bind(t,31307,23))},94431:(e,r,t)=>{"use strict";t.r(r),t.d(r,{default:()=>a,metadata:()=>d});var n=t(37413),s=t(85041),o=t.n(s);t(61135);var i=t(28157);t(20440);let d={title:"PaisaAds - Advertisement Platform",description:"Find and post advertisements across multiple categories"};function a({children:e}){return(0,n.jsx)("html",{lang:"en",children:(0,n.jsx)("body",{className:o().className,children:(0,n.jsx)(i.default,{children:e})})})}}};var r=require("../../webpack-runtime.js");r.C(e);var t=e=>r(r.s=e),n=r.X(0,[7719,2900],()=>t(89013));module.exports=n})();
|
||||
@@ -1 +0,0 @@
|
||||
{"version":1,"files":["../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/package.json","../../../package.json","../../chunks/2900.js","../../chunks/7719.js","../../webpack-runtime.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"headers": {
|
||||
"x-nextjs-stale-time": "4294967294",
|
||||
"x-nextjs-prerender": "1",
|
||||
"x-next-cache-tags": "_N_T_/layout,_N_T_/(website)/layout,_N_T_/(website)/about-us/layout,_N_T_/(website)/about-us/page,_N_T_/about-us"
|
||||
}
|
||||
}
|
||||
@@ -1,29 +0,0 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[331,["6671","static/chunks/6671-dcfdf79cfb09c0b6.js","8571","static/chunks/8571-ce32b7a58bb742f8.js","7177","static/chunks/app/layout-b6a4fbb25b6757a0.js"],"default"]
|
||||
3:I[87555,[],""]
|
||||
4:I[31295,[],""]
|
||||
5:I[94970,[],"ClientSegmentRoot"]
|
||||
6:I[88208,["7513","static/chunks/7513-55dce3b36c55ee2f.js","2469","static/chunks/2469-d312c7e82f85e7c1.js","8755","static/chunks/8755-e5d7986f884869eb.js","3740","static/chunks/3740-75abaee0d7518637.js","2020","static/chunks/2020-d3ff61664355250b.js","1920","static/chunks/1920-2fab8fea435d2ef0.js","7528","static/chunks/7528-39488c6a950f9070.js","6671","static/chunks/6671-dcfdf79cfb09c0b6.js","6874","static/chunks/6874-ca5ec3aefb24b1ff.js","6215","static/chunks/6215-5a5ae90ed232168e.js","5521","static/chunks/5521-037978864aa9d2f6.js","3281","static/chunks/3281-54a4a414f8202de1.js","6806","static/chunks/6806-b3fad98431722b95.js","2806","static/chunks/app/(website)/layout-ac393786a6771843.js"],"default"]
|
||||
8:I[90894,[],"ClientPageRoot"]
|
||||
9:I[67404,["7513","static/chunks/7513-55dce3b36c55ee2f.js","2469","static/chunks/2469-d312c7e82f85e7c1.js","8755","static/chunks/8755-e5d7986f884869eb.js","2776","static/chunks/2776-38612bfced0945e2.js","9322","static/chunks/app/(website)/about-us/page-f116123e0c37bc42.js"],"default"]
|
||||
c:I[59665,[],"MetadataBoundary"]
|
||||
e:I[59665,[],"OutletBoundary"]
|
||||
11:I[74911,[],"AsyncMetadataOutlet"]
|
||||
13:I[59665,[],"ViewportBoundary"]
|
||||
15:I[26614,[],""]
|
||||
:HL["/_next/static/css/931b179cff3131dc.css","style"]
|
||||
:HL["/_next/static/css/a05813e53b976176.css","style"]
|
||||
:HL["/_next/static/css/d4cfc5b96bcde986.css","style"]
|
||||
:HL["/_next/static/css/f5221b67a5053a62.css","style"]
|
||||
0:{"P":null,"b":"4v15d-38tGeeprcNnzC5m","p":"","c":["","about-us"],"i":false,"f":[[["",{"children":["(website)",{"children":["about-us",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/931b179cff3131dc.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/css/a05813e53b976176.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","2",{"rel":"stylesheet","href":"/_next/static/css/d4cfc5b96bcde986.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"className":"__className_e8ce0c","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":["(website)",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/f5221b67a5053a62.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","$L5",null,{"Component":"$6","slots":{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:1:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:1:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:1:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:1:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]},"params":{},"promise":"$@7"}]]}],{"children":["about-us",["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","searchParams":{},"params":"$0:f:0:1:2:children:1:props:children:1:props:params","promises":["$@a","$@b"]}],["$","$Lc",null,{"children":"$Ld"}],null,["$","$Le",null,{"children":["$Lf","$L10",["$","$L11",null,{"promise":"$@12"}]]}]]}],{},null,false]},null,false]},null,false]},null,false],["$","$1","h",{"children":[null,["$","$1","Aosar1XGVUlP3M1CjoxYL",{"children":[["$","$L13",null,{"children":"$L14"}],null]}],null]}],false]],"m":"$undefined","G":["$15","$undefined"],"s":false,"S":true}
|
||||
16:"$Sreact.suspense"
|
||||
17:I[74911,[],"AsyncMetadata"]
|
||||
7:{}
|
||||
a:{}
|
||||
b:{}
|
||||
d:["$","$16",null,{"fallback":null,"children":["$","$L17",null,{"promise":"$@18"}]}]
|
||||
10:null
|
||||
14:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
f:null
|
||||
18:{"metadata":[["$","title","0",{"children":"PaisaAds - Advertisement Platform"}],["$","meta","1",{"name":"description","content":"Find and post advertisements across multiple categories"}],["$","link","2",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]],"error":null,"digest":"$undefined"}
|
||||
12:{"metadata":"$18:metadata","error":null,"digest":"$undefined"}
|
||||
@@ -1 +0,0 @@
|
||||
(()=>{var e={};e.id=728,e.ids=[728],e.modules={10846:e=>{"use strict";e.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},29294:e=>{"use strict";e.exports=require("next/dist/server/app-render/work-async-storage.external.js")},44870:e=>{"use strict";e.exports=require("next/dist/compiled/next-server/app-route.runtime.prod.js")},63033:e=>{"use strict";e.exports=require("next/dist/server/app-render/work-unit-async-storage.external.js")},73730:(e,r,t)=>{"use strict";t.r(r),t.d(r,{patchFetch:()=>g,routeModule:()=>p,serverHooks:()=>c,workAsyncStorage:()=>u,workUnitAsyncStorage:()=>d});var s={};t.r(s),t.d(s,{GET:()=>o});var a=t(96559),n=t(48088),i=t(37719);async function o(e){let r=new URL(e.url).searchParams.get("imageName");if(!r)return new Response(JSON.stringify({error:"Image name is required"}),{status:400});try{let e=`https://paisaads.in/server/uploads/${r}`;console.log(e);let t=await fetch(e);if(!t.ok)return new Response(JSON.stringify({error:"Failed to fetch image"}),{status:t.status});let s=t.headers.get("Content-Type"),a=new Headers;return a.set("Content-Type",s??"image/png"),a.set("Cache-Control","public, max-age=3600"),new Response(t.body,{headers:a})}catch(e){return console.error(e),new Response(JSON.stringify({error:"Error fetching image"}),{status:500})}}let p=new a.AppRouteRouteModule({definition:{kind:n.RouteKind.APP_ROUTE,page:"/api/images/route",pathname:"/api/images",filename:"route",bundlePath:"app/api/images/route"},resolvedPagePath:"Z:\\paisaads\\frontend\\src\\app\\api\\images\\route.ts",nextConfigOutput:"standalone",userland:s}),{workAsyncStorage:u,workUnitAsyncStorage:d,serverHooks:c}=p;function g(){return(0,i.patchFetch)({workAsyncStorage:u,workUnitAsyncStorage:d})}},78335:()=>{},96487:()=>{},96559:(e,r,t)=>{"use strict";e.exports=t(44870)}};var r=require("../../../webpack-runtime.js");r.C(e);var t=e=>r(r.s=e),s=r.X(0,[7719],()=>t(73730));module.exports=s})();
|
||||
@@ -1 +0,0 @@
|
||||
{"version":1,"files":["../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../node_modules/next/dist/compiled/next-server/app-route.runtime.prod.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../node_modules/next/package.json","../../../../../package.json","../../../../package.json","../../../chunks/7719.js","../../../webpack-runtime.js","route_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"headers": {
|
||||
"x-nextjs-stale-time": "4294967294",
|
||||
"x-nextjs-prerender": "1",
|
||||
"x-next-cache-tags": "_N_T_/layout,_N_T_/(website)/layout,_N_T_/(website)/contact/layout,_N_T_/(website)/contact/page,_N_T_/contact"
|
||||
}
|
||||
}
|
||||
@@ -1,29 +0,0 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[331,["6671","static/chunks/6671-dcfdf79cfb09c0b6.js","8571","static/chunks/8571-ce32b7a58bb742f8.js","7177","static/chunks/app/layout-b6a4fbb25b6757a0.js"],"default"]
|
||||
3:I[87555,[],""]
|
||||
4:I[31295,[],""]
|
||||
5:I[94970,[],"ClientSegmentRoot"]
|
||||
6:I[88208,["7513","static/chunks/7513-55dce3b36c55ee2f.js","2469","static/chunks/2469-d312c7e82f85e7c1.js","8755","static/chunks/8755-e5d7986f884869eb.js","3740","static/chunks/3740-75abaee0d7518637.js","2020","static/chunks/2020-d3ff61664355250b.js","1920","static/chunks/1920-2fab8fea435d2ef0.js","7528","static/chunks/7528-39488c6a950f9070.js","6671","static/chunks/6671-dcfdf79cfb09c0b6.js","6874","static/chunks/6874-ca5ec3aefb24b1ff.js","6215","static/chunks/6215-5a5ae90ed232168e.js","5521","static/chunks/5521-037978864aa9d2f6.js","3281","static/chunks/3281-54a4a414f8202de1.js","6806","static/chunks/6806-b3fad98431722b95.js","2806","static/chunks/app/(website)/layout-ac393786a6771843.js"],"default"]
|
||||
8:I[90894,[],"ClientPageRoot"]
|
||||
9:I[27949,["7513","static/chunks/7513-55dce3b36c55ee2f.js","2469","static/chunks/2469-d312c7e82f85e7c1.js","8755","static/chunks/8755-e5d7986f884869eb.js","4138","static/chunks/app/(website)/contact/page-ad3ebcbf55160a06.js"],"default"]
|
||||
c:I[59665,[],"MetadataBoundary"]
|
||||
e:I[59665,[],"OutletBoundary"]
|
||||
11:I[74911,[],"AsyncMetadataOutlet"]
|
||||
13:I[59665,[],"ViewportBoundary"]
|
||||
15:I[26614,[],""]
|
||||
:HL["/_next/static/css/931b179cff3131dc.css","style"]
|
||||
:HL["/_next/static/css/a05813e53b976176.css","style"]
|
||||
:HL["/_next/static/css/d4cfc5b96bcde986.css","style"]
|
||||
:HL["/_next/static/css/f5221b67a5053a62.css","style"]
|
||||
0:{"P":null,"b":"4v15d-38tGeeprcNnzC5m","p":"","c":["","contact"],"i":false,"f":[[["",{"children":["(website)",{"children":["contact",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/931b179cff3131dc.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/css/a05813e53b976176.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","2",{"rel":"stylesheet","href":"/_next/static/css/d4cfc5b96bcde986.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"className":"__className_e8ce0c","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":["(website)",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/f5221b67a5053a62.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","$L5",null,{"Component":"$6","slots":{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:1:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:1:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:1:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:1:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]},"params":{},"promise":"$@7"}]]}],{"children":["contact",["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","searchParams":{},"params":"$0:f:0:1:2:children:1:props:children:1:props:params","promises":["$@a","$@b"]}],["$","$Lc",null,{"children":"$Ld"}],null,["$","$Le",null,{"children":["$Lf","$L10",["$","$L11",null,{"promise":"$@12"}]]}]]}],{},null,false]},null,false]},null,false]},null,false],["$","$1","h",{"children":[null,["$","$1","hvVq0gHdjwx0lkuPM-mrl",{"children":[["$","$L13",null,{"children":"$L14"}],null]}],null]}],false]],"m":"$undefined","G":["$15","$undefined"],"s":false,"S":true}
|
||||
16:"$Sreact.suspense"
|
||||
17:I[74911,[],"AsyncMetadata"]
|
||||
7:{}
|
||||
a:{}
|
||||
b:{}
|
||||
d:["$","$16",null,{"fallback":null,"children":["$","$L17",null,{"promise":"$@18"}]}]
|
||||
10:null
|
||||
14:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
f:null
|
||||
18:{"metadata":[["$","title","0",{"children":"PaisaAds - Advertisement Platform"}],["$","meta","1",{"name":"description","content":"Find and post advertisements across multiple categories"}],["$","link","2",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]],"error":null,"digest":"$undefined"}
|
||||
12:{"metadata":"$18:metadata","error":null,"digest":"$undefined"}
|
||||
File diff suppressed because one or more lines are too long
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"headers": {
|
||||
"x-nextjs-stale-time": "4294967294",
|
||||
"x-nextjs-prerender": "1",
|
||||
"x-next-cache-tags": "_N_T_/layout,_N_T_/dashboard/layout,_N_T_/dashboard/page,_N_T_/dashboard"
|
||||
}
|
||||
}
|
||||
@@ -1,25 +0,0 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[331,["6671","static/chunks/6671-dcfdf79cfb09c0b6.js","8571","static/chunks/8571-ce32b7a58bb742f8.js","7177","static/chunks/app/layout-b6a4fbb25b6757a0.js"],"default"]
|
||||
3:I[87555,[],""]
|
||||
4:I[31295,[],""]
|
||||
5:I[94970,[],"ClientSegmentRoot"]
|
||||
6:I[23388,["7513","static/chunks/7513-55dce3b36c55ee2f.js","2469","static/chunks/2469-d312c7e82f85e7c1.js","8755","static/chunks/8755-e5d7986f884869eb.js","3740","static/chunks/3740-75abaee0d7518637.js","2020","static/chunks/2020-d3ff61664355250b.js","1920","static/chunks/1920-2fab8fea435d2ef0.js","7528","static/chunks/7528-39488c6a950f9070.js","6671","static/chunks/6671-dcfdf79cfb09c0b6.js","6874","static/chunks/6874-ca5ec3aefb24b1ff.js","6215","static/chunks/6215-5a5ae90ed232168e.js","1954","static/chunks/app/dashboard/layout-43eab6adc547ea8c.js"],"default"]
|
||||
8:I[45661,["7513","static/chunks/7513-55dce3b36c55ee2f.js","2469","static/chunks/2469-d312c7e82f85e7c1.js","8755","static/chunks/8755-e5d7986f884869eb.js","5105","static/chunks/app/dashboard/page-b69619ffbbeaecf6.js"],"default"]
|
||||
9:I[59665,[],"MetadataBoundary"]
|
||||
b:I[59665,[],"OutletBoundary"]
|
||||
e:I[74911,[],"AsyncMetadataOutlet"]
|
||||
10:I[59665,[],"ViewportBoundary"]
|
||||
12:I[26614,[],""]
|
||||
:HL["/_next/static/css/931b179cff3131dc.css","style"]
|
||||
:HL["/_next/static/css/a05813e53b976176.css","style"]
|
||||
:HL["/_next/static/css/d4cfc5b96bcde986.css","style"]
|
||||
0:{"P":null,"b":"4v15d-38tGeeprcNnzC5m","p":"","c":["","dashboard"],"i":false,"f":[[["",{"children":["dashboard",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/931b179cff3131dc.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/css/a05813e53b976176.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","2",{"rel":"stylesheet","href":"/_next/static/css/d4cfc5b96bcde986.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"className":"__className_e8ce0c","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":["dashboard",["$","$1","c",{"children":[null,["$","$L5",null,{"Component":"$6","slots":{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]},"params":{},"promise":"$@7"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[["$","div",null,{"className":"space-y-6","children":[["$","h1",null,{"className":"text-3xl font-bold","children":"Dashboard"}],["$","$L8",null,{}]]}],["$","$L9",null,{"children":"$La"}],null,["$","$Lb",null,{"children":["$Lc","$Ld",["$","$Le",null,{"promise":"$@f"}]]}]]}],{},null,false]},null,false]},null,false],["$","$1","h",{"children":[null,["$","$1","gUBFvwr6r5PjFmLGbHcRK",{"children":[["$","$L10",null,{"children":"$L11"}],null]}],null]}],false]],"m":"$undefined","G":["$12","$undefined"],"s":false,"S":true}
|
||||
13:"$Sreact.suspense"
|
||||
14:I[74911,[],"AsyncMetadata"]
|
||||
7:{}
|
||||
a:["$","$13",null,{"fallback":null,"children":["$","$L14",null,{"promise":"$@15"}]}]
|
||||
d:null
|
||||
11:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
c:null
|
||||
15:{"metadata":[["$","title","0",{"children":"Dashboard - PaisaAds"}],["$","meta","1",{"name":"description","content":"Manage your advertisements"}],["$","link","2",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]],"error":null,"digest":"$undefined"}
|
||||
f:{"metadata":"$15:metadata","error":null,"digest":"$undefined"}
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
{"version":1,"files":["../../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../../node_modules/next/package.json","../../../../../../package.json","../../../../../chunks/157.js","../../../../../chunks/1758.js","../../../../../chunks/2900.js","../../../../../chunks/3252.js","../../../../../chunks/4764.js","../../../../../chunks/5539.js","../../../../../chunks/5624.js","../../../../../chunks/6241.js","../../../../../chunks/7162.js","../../../../../chunks/7584.js","../../../../../chunks/7719.js","../../../../../chunks/8373.js","../../../../../webpack-runtime.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
{"version":1,"files":["../../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../../node_modules/next/package.json","../../../../../../package.json","../../../../../chunks/157.js","../../../../../chunks/1747.js","../../../../../chunks/1758.js","../../../../../chunks/2900.js","../../../../../chunks/3252.js","../../../../../chunks/4764.js","../../../../../chunks/5539.js","../../../../../chunks/5624.js","../../../../../chunks/6241.js","../../../../../chunks/7162.js","../../../../../chunks/7584.js","../../../../../chunks/7719.js","../../../../../chunks/8373.js","../../../../../chunks/8540.js","../../../../../webpack-runtime.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
{"version":1,"files":["../../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../../node_modules/next/package.json","../../../../../../package.json","../../../../../chunks/157.js","../../../../../chunks/1758.js","../../../../../chunks/2900.js","../../../../../chunks/3252.js","../../../../../chunks/4764.js","../../../../../chunks/5539.js","../../../../../chunks/5624.js","../../../../../chunks/6241.js","../../../../../chunks/7162.js","../../../../../chunks/7584.js","../../../../../chunks/7719.js","../../../../../chunks/8373.js","../../../../../chunks/8540.js","../../../../../webpack-runtime.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"headers": {
|
||||
"x-nextjs-stale-time": "4294967294",
|
||||
"x-nextjs-prerender": "1",
|
||||
"x-next-cache-tags": "_N_T_/layout,_N_T_/dashboard/layout,_N_T_/dashboard/my-ads/layout,_N_T_/dashboard/my-ads/line-ads/layout,_N_T_/dashboard/my-ads/line-ads/page,_N_T_/dashboard/my-ads/line-ads"
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
{"version":1,"files":["../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../node_modules/next/package.json","../../../../../../package.json","../../../../../package.json","../../../../chunks/157.js","../../../../chunks/1747.js","../../../../chunks/1758.js","../../../../chunks/2900.js","../../../../chunks/3252.js","../../../../chunks/3886.js","../../../../chunks/4764.js","../../../../chunks/5539.js","../../../../chunks/6015.js","../../../../chunks/6241.js","../../../../chunks/625.js","../../../../chunks/6875.js","../../../../chunks/7162.js","../../../../chunks/7584.js","../../../../chunks/7719.js","../../../../chunks/916.js","../../../../webpack-runtime.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"headers": {
|
||||
"x-nextjs-stale-time": "4294967294",
|
||||
"x-nextjs-prerender": "1",
|
||||
"x-next-cache-tags": "_N_T_/layout,_N_T_/dashboard/layout,_N_T_/dashboard/my-ads/layout,_N_T_/dashboard/my-ads/poster-ads/layout,_N_T_/dashboard/my-ads/poster-ads/page,_N_T_/dashboard/my-ads/poster-ads"
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
{"version":1,"files":["../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../node_modules/next/package.json","../../../../../../package.json","../../../../../package.json","../../../../chunks/157.js","../../../../chunks/1747.js","../../../../chunks/1758.js","../../../../chunks/2900.js","../../../../chunks/3252.js","../../../../chunks/3886.js","../../../../chunks/4764.js","../../../../chunks/5539.js","../../../../chunks/6015.js","../../../../chunks/6241.js","../../../../chunks/625.js","../../../../chunks/6875.js","../../../../chunks/7162.js","../../../../chunks/7584.js","../../../../chunks/7719.js","../../../../chunks/916.js","../../../../webpack-runtime.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"headers": {
|
||||
"x-nextjs-stale-time": "4294967294",
|
||||
"x-nextjs-prerender": "1",
|
||||
"x-next-cache-tags": "_N_T_/layout,_N_T_/dashboard/layout,_N_T_/dashboard/my-ads/layout,_N_T_/dashboard/my-ads/video-ads/layout,_N_T_/dashboard/my-ads/video-ads/page,_N_T_/dashboard/my-ads/video-ads"
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
{"version":1,"files":["../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../node_modules/next/package.json","../../../../../../package.json","../../../../../package.json","../../../../chunks/157.js","../../../../chunks/1747.js","../../../../chunks/1758.js","../../../../chunks/2900.js","../../../../chunks/3252.js","../../../../chunks/3886.js","../../../../chunks/4764.js","../../../../chunks/5539.js","../../../../chunks/6015.js","../../../../chunks/6241.js","../../../../chunks/625.js","../../../../chunks/6875.js","../../../../chunks/7162.js","../../../../chunks/7584.js","../../../../chunks/7719.js","../../../../chunks/916.js","../../../../webpack-runtime.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
{"version":1,"files":["../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/package.json","../../../../package.json","../../../package.json","../../chunks/157.js","../../chunks/2900.js","../../chunks/3252.js","../../chunks/4764.js","../../chunks/6241.js","../../chunks/7584.js","../../chunks/7719.js","../../webpack-runtime.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"headers": {
|
||||
"x-nextjs-stale-time": "4294967294",
|
||||
"x-nextjs-prerender": "1",
|
||||
"x-next-cache-tags": "_N_T_/layout,_N_T_/dashboard/layout,_N_T_/dashboard/post-ad/layout,_N_T_/dashboard/post-ad/line-ad/layout,_N_T_/dashboard/post-ad/line-ad/page,_N_T_/dashboard/post-ad/line-ad"
|
||||
}
|
||||
}
|
||||
@@ -1,26 +0,0 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[331,["6671","static/chunks/6671-dcfdf79cfb09c0b6.js","8571","static/chunks/8571-ce32b7a58bb742f8.js","7177","static/chunks/app/layout-b6a4fbb25b6757a0.js"],"default"]
|
||||
3:I[87555,[],""]
|
||||
4:I[31295,[],""]
|
||||
5:I[94970,[],"ClientSegmentRoot"]
|
||||
6:I[23388,["7513","static/chunks/7513-55dce3b36c55ee2f.js","2469","static/chunks/2469-d312c7e82f85e7c1.js","8755","static/chunks/8755-e5d7986f884869eb.js","3740","static/chunks/3740-75abaee0d7518637.js","2020","static/chunks/2020-d3ff61664355250b.js","1920","static/chunks/1920-2fab8fea435d2ef0.js","7528","static/chunks/7528-39488c6a950f9070.js","6671","static/chunks/6671-dcfdf79cfb09c0b6.js","6874","static/chunks/6874-ca5ec3aefb24b1ff.js","6215","static/chunks/6215-5a5ae90ed232168e.js","1954","static/chunks/app/dashboard/layout-43eab6adc547ea8c.js"],"default"]
|
||||
8:I[36219,["7513","static/chunks/7513-55dce3b36c55ee2f.js","2469","static/chunks/2469-d312c7e82f85e7c1.js","8755","static/chunks/8755-e5d7986f884869eb.js","3740","static/chunks/3740-75abaee0d7518637.js","2020","static/chunks/2020-d3ff61664355250b.js","1920","static/chunks/1920-2fab8fea435d2ef0.js","7528","static/chunks/7528-39488c6a950f9070.js","6671","static/chunks/6671-dcfdf79cfb09c0b6.js","6874","static/chunks/6874-ca5ec3aefb24b1ff.js","7217","static/chunks/7217-6f84d09d281e8c8f.js","9256","static/chunks/9256-cb8f54a73f9a464a.js","5521","static/chunks/5521-037978864aa9d2f6.js","4286","static/chunks/4286-f2f2adcc6bebf25c.js","7847","static/chunks/7847-210e31fe1e011c87.js","9050","static/chunks/9050-6111740aa73ad309.js","8725","static/chunks/app/dashboard/post-ad/line-ad/page-e97ead1121202a32.js"],"PostAdForm"]
|
||||
9:I[59665,[],"MetadataBoundary"]
|
||||
b:I[59665,[],"OutletBoundary"]
|
||||
e:I[74911,[],"AsyncMetadataOutlet"]
|
||||
10:I[59665,[],"ViewportBoundary"]
|
||||
12:I[26614,[],""]
|
||||
:HL["/_next/static/css/931b179cff3131dc.css","style"]
|
||||
:HL["/_next/static/css/a05813e53b976176.css","style"]
|
||||
:HL["/_next/static/css/d4cfc5b96bcde986.css","style"]
|
||||
:HL["/_next/static/css/2d58c696dcd2f12b.css","style"]
|
||||
0:{"P":null,"b":"4v15d-38tGeeprcNnzC5m","p":"","c":["","dashboard","post-ad","line-ad"],"i":false,"f":[[["",{"children":["dashboard",{"children":["post-ad",{"children":["line-ad",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/931b179cff3131dc.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/css/a05813e53b976176.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","2",{"rel":"stylesheet","href":"/_next/static/css/d4cfc5b96bcde986.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"className":"__className_e8ce0c","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":["dashboard",["$","$1","c",{"children":[null,["$","$L5",null,{"Component":"$6","slots":{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]},"params":{},"promise":"$@7"}]]}],{"children":["post-ad",["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["line-ad",["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[["$","div",null,{"className":"space-y-6 ","children":["$","$L8",null,{}]}],["$","$L9",null,{"children":"$La"}],[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/2d58c696dcd2f12b.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","$Lb",null,{"children":["$Lc","$Ld",["$","$Le",null,{"promise":"$@f"}]]}]]}],{},null,false]},null,false]},null,false]},null,false]},null,false],["$","$1","h",{"children":[null,["$","$1","eJHagtzjdXfzmd076tBnY",{"children":[["$","$L10",null,{"children":"$L11"}],null]}],null]}],false]],"m":"$undefined","G":["$12","$undefined"],"s":false,"S":true}
|
||||
13:"$Sreact.suspense"
|
||||
14:I[74911,[],"AsyncMetadata"]
|
||||
7:{}
|
||||
a:["$","$13",null,{"fallback":null,"children":["$","$L14",null,{"promise":"$@15"}]}]
|
||||
d:null
|
||||
11:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
c:null
|
||||
15:{"metadata":[["$","title","0",{"children":"Post Ad - PaisaAds"}],["$","meta","1",{"name":"description","content":"Create a new advertisement"}],["$","link","2",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]],"error":null,"digest":"$undefined"}
|
||||
f:{"metadata":"$15:metadata","error":null,"digest":"$undefined"}
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
{"version":1,"files":["../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../node_modules/next/package.json","../../../../../../package.json","../../../../../package.json","../../../../chunks/157.js","../../../../chunks/1758.js","../../../../chunks/2900.js","../../../../chunks/3252.js","../../../../chunks/4764.js","../../../../chunks/5539.js","../../../../chunks/5624.js","../../../../chunks/6241.js","../../../../chunks/7162.js","../../../../chunks/7584.js","../../../../chunks/7719.js","../../../../chunks/8373.js","../../../../chunks/8540.js","../../../../webpack-runtime.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"headers": {
|
||||
"x-nextjs-stale-time": "4294967294",
|
||||
"x-nextjs-prerender": "1",
|
||||
"x-next-cache-tags": "_N_T_/layout,_N_T_/dashboard/layout,_N_T_/dashboard/post-ad/layout,_N_T_/dashboard/post-ad/poster-ad/layout,_N_T_/dashboard/post-ad/poster-ad/page,_N_T_/dashboard/post-ad/poster-ad"
|
||||
}
|
||||
}
|
||||
@@ -1,26 +0,0 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[331,["6671","static/chunks/6671-dcfdf79cfb09c0b6.js","8571","static/chunks/8571-ce32b7a58bb742f8.js","7177","static/chunks/app/layout-b6a4fbb25b6757a0.js"],"default"]
|
||||
3:I[87555,[],""]
|
||||
4:I[31295,[],""]
|
||||
5:I[94970,[],"ClientSegmentRoot"]
|
||||
6:I[23388,["7513","static/chunks/7513-55dce3b36c55ee2f.js","2469","static/chunks/2469-d312c7e82f85e7c1.js","8755","static/chunks/8755-e5d7986f884869eb.js","3740","static/chunks/3740-75abaee0d7518637.js","2020","static/chunks/2020-d3ff61664355250b.js","1920","static/chunks/1920-2fab8fea435d2ef0.js","7528","static/chunks/7528-39488c6a950f9070.js","6671","static/chunks/6671-dcfdf79cfb09c0b6.js","6874","static/chunks/6874-ca5ec3aefb24b1ff.js","6215","static/chunks/6215-5a5ae90ed232168e.js","1954","static/chunks/app/dashboard/layout-43eab6adc547ea8c.js"],"default"]
|
||||
8:I[84573,["7513","static/chunks/7513-55dce3b36c55ee2f.js","2469","static/chunks/2469-d312c7e82f85e7c1.js","8755","static/chunks/8755-e5d7986f884869eb.js","3740","static/chunks/3740-75abaee0d7518637.js","2020","static/chunks/2020-d3ff61664355250b.js","1920","static/chunks/1920-2fab8fea435d2ef0.js","7528","static/chunks/7528-39488c6a950f9070.js","6671","static/chunks/6671-dcfdf79cfb09c0b6.js","6874","static/chunks/6874-ca5ec3aefb24b1ff.js","7217","static/chunks/7217-6f84d09d281e8c8f.js","9256","static/chunks/9256-cb8f54a73f9a464a.js","5521","static/chunks/5521-037978864aa9d2f6.js","4286","static/chunks/4286-f2f2adcc6bebf25c.js","7847","static/chunks/7847-210e31fe1e011c87.js","9050","static/chunks/9050-6111740aa73ad309.js","992","static/chunks/app/dashboard/post-ad/poster-ad/page-5e1fea197635c444.js"],"PostPosterAdForm"]
|
||||
9:I[59665,[],"MetadataBoundary"]
|
||||
b:I[59665,[],"OutletBoundary"]
|
||||
e:I[74911,[],"AsyncMetadataOutlet"]
|
||||
10:I[59665,[],"ViewportBoundary"]
|
||||
12:I[26614,[],""]
|
||||
:HL["/_next/static/css/931b179cff3131dc.css","style"]
|
||||
:HL["/_next/static/css/a05813e53b976176.css","style"]
|
||||
:HL["/_next/static/css/d4cfc5b96bcde986.css","style"]
|
||||
:HL["/_next/static/css/2d58c696dcd2f12b.css","style"]
|
||||
0:{"P":null,"b":"4v15d-38tGeeprcNnzC5m","p":"","c":["","dashboard","post-ad","poster-ad"],"i":false,"f":[[["",{"children":["dashboard",{"children":["post-ad",{"children":["poster-ad",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/931b179cff3131dc.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/css/a05813e53b976176.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","2",{"rel":"stylesheet","href":"/_next/static/css/d4cfc5b96bcde986.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"className":"__className_e8ce0c","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":["dashboard",["$","$1","c",{"children":[null,["$","$L5",null,{"Component":"$6","slots":{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]},"params":{},"promise":"$@7"}]]}],{"children":["post-ad",["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["poster-ad",["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[["$","div",null,{"className":"space-y-6 ","children":["$","$L8",null,{}]}],["$","$L9",null,{"children":"$La"}],[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/2d58c696dcd2f12b.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","$Lb",null,{"children":["$Lc","$Ld",["$","$Le",null,{"promise":"$@f"}]]}]]}],{},null,false]},null,false]},null,false]},null,false]},null,false],["$","$1","h",{"children":[null,["$","$1","4eVF3NoXk9ygPC5Zjh90c",{"children":[["$","$L10",null,{"children":"$L11"}],null]}],null]}],false]],"m":"$undefined","G":["$12","$undefined"],"s":false,"S":true}
|
||||
13:"$Sreact.suspense"
|
||||
14:I[74911,[],"AsyncMetadata"]
|
||||
7:{}
|
||||
a:["$","$13",null,{"fallback":null,"children":["$","$L14",null,{"promise":"$@15"}]}]
|
||||
d:null
|
||||
11:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
c:null
|
||||
15:{"metadata":[["$","title","0",{"children":"Post Ad - PaisaAds"}],["$","meta","1",{"name":"description","content":"Create a new advertisement"}],["$","link","2",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]],"error":null,"digest":"$undefined"}
|
||||
f:{"metadata":"$15:metadata","error":null,"digest":"$undefined"}
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
{"version":1,"files":["../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../../../node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../node_modules/next/package.json","../../../../../../package.json","../../../../../package.json","../../../../chunks/157.js","../../../../chunks/1758.js","../../../../chunks/2900.js","../../../../chunks/3252.js","../../../../chunks/4764.js","../../../../chunks/5539.js","../../../../chunks/5624.js","../../../../chunks/6241.js","../../../../chunks/7162.js","../../../../chunks/7584.js","../../../../chunks/7719.js","../../../../chunks/8373.js","../../../../chunks/8540.js","../../../../webpack-runtime.js","page_client-reference-manifest.js"]}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"headers": {
|
||||
"x-nextjs-stale-time": "4294967294",
|
||||
"x-nextjs-prerender": "1",
|
||||
"x-next-cache-tags": "_N_T_/layout,_N_T_/dashboard/layout,_N_T_/dashboard/post-ad/layout,_N_T_/dashboard/post-ad/video-ad/layout,_N_T_/dashboard/post-ad/video-ad/page,_N_T_/dashboard/post-ad/video-ad"
|
||||
}
|
||||
}
|
||||
@@ -1,26 +0,0 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[331,["6671","static/chunks/6671-dcfdf79cfb09c0b6.js","8571","static/chunks/8571-ce32b7a58bb742f8.js","7177","static/chunks/app/layout-b6a4fbb25b6757a0.js"],"default"]
|
||||
3:I[87555,[],""]
|
||||
4:I[31295,[],""]
|
||||
5:I[94970,[],"ClientSegmentRoot"]
|
||||
6:I[23388,["7513","static/chunks/7513-55dce3b36c55ee2f.js","2469","static/chunks/2469-d312c7e82f85e7c1.js","8755","static/chunks/8755-e5d7986f884869eb.js","3740","static/chunks/3740-75abaee0d7518637.js","2020","static/chunks/2020-d3ff61664355250b.js","1920","static/chunks/1920-2fab8fea435d2ef0.js","7528","static/chunks/7528-39488c6a950f9070.js","6671","static/chunks/6671-dcfdf79cfb09c0b6.js","6874","static/chunks/6874-ca5ec3aefb24b1ff.js","6215","static/chunks/6215-5a5ae90ed232168e.js","1954","static/chunks/app/dashboard/layout-43eab6adc547ea8c.js"],"default"]
|
||||
8:I[76725,["7513","static/chunks/7513-55dce3b36c55ee2f.js","2469","static/chunks/2469-d312c7e82f85e7c1.js","8755","static/chunks/8755-e5d7986f884869eb.js","3740","static/chunks/3740-75abaee0d7518637.js","2020","static/chunks/2020-d3ff61664355250b.js","1920","static/chunks/1920-2fab8fea435d2ef0.js","7528","static/chunks/7528-39488c6a950f9070.js","6671","static/chunks/6671-dcfdf79cfb09c0b6.js","6874","static/chunks/6874-ca5ec3aefb24b1ff.js","7217","static/chunks/7217-6f84d09d281e8c8f.js","9256","static/chunks/9256-cb8f54a73f9a464a.js","5521","static/chunks/5521-037978864aa9d2f6.js","4286","static/chunks/4286-f2f2adcc6bebf25c.js","7847","static/chunks/7847-210e31fe1e011c87.js","9050","static/chunks/9050-6111740aa73ad309.js","8160","static/chunks/app/dashboard/post-ad/video-ad/page-e11fa6ba8c7cf963.js"],"PostVideoAdForm"]
|
||||
9:I[59665,[],"MetadataBoundary"]
|
||||
b:I[59665,[],"OutletBoundary"]
|
||||
e:I[74911,[],"AsyncMetadataOutlet"]
|
||||
10:I[59665,[],"ViewportBoundary"]
|
||||
12:I[26614,[],""]
|
||||
:HL["/_next/static/css/931b179cff3131dc.css","style"]
|
||||
:HL["/_next/static/css/a05813e53b976176.css","style"]
|
||||
:HL["/_next/static/css/d4cfc5b96bcde986.css","style"]
|
||||
:HL["/_next/static/css/2d58c696dcd2f12b.css","style"]
|
||||
0:{"P":null,"b":"4v15d-38tGeeprcNnzC5m","p":"","c":["","dashboard","post-ad","video-ad"],"i":false,"f":[[["",{"children":["dashboard",{"children":["post-ad",{"children":["video-ad",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/931b179cff3131dc.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/css/a05813e53b976176.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","2",{"rel":"stylesheet","href":"/_next/static/css/d4cfc5b96bcde986.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"className":"__className_e8ce0c","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":["dashboard",["$","$1","c",{"children":[null,["$","$L5",null,{"Component":"$6","slots":{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]},"params":{},"promise":"$@7"}]]}],{"children":["post-ad",["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["video-ad",["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[["$","div",null,{"children":["$","$L8",null,{}]}],["$","$L9",null,{"children":"$La"}],[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/2d58c696dcd2f12b.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","$Lb",null,{"children":["$Lc","$Ld",["$","$Le",null,{"promise":"$@f"}]]}]]}],{},null,false]},null,false]},null,false]},null,false]},null,false],["$","$1","h",{"children":[null,["$","$1","5fDWAQRazLXoarz8lRQGf",{"children":[["$","$L10",null,{"children":"$L11"}],null]}],null]}],false]],"m":"$undefined","G":["$12","$undefined"],"s":false,"S":true}
|
||||
13:"$Sreact.suspense"
|
||||
14:I[74911,[],"AsyncMetadata"]
|
||||
7:{}
|
||||
a:["$","$13",null,{"fallback":null,"children":["$","$L14",null,{"promise":"$@15"}]}]
|
||||
d:null
|
||||
11:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
c:null
|
||||
15:{"metadata":[["$","title","0",{"children":"Post Ad - PaisaAds"}],["$","meta","1",{"name":"description","content":"Create a new advertisement"}],["$","link","2",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]],"error":null,"digest":"$undefined"}
|
||||
f:{"metadata":"$15:metadata","error":null,"digest":"$undefined"}
|
||||
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user