-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Refactor and migrate Web scraping to
app
router, INTER-911, …
…INTER-459 (#162) * chore: move web scraping page to `app` * chore: move web scraping api to `app` * chore: move assets to app, fix build * chore: add status codes
- Loading branch information
Showing
14 changed files
with
119 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
export const AIRPORTS = [ | ||
{ city: 'San Francisco', code: 'SFO' }, | ||
{ city: 'New York', code: 'JFK' }, | ||
{ city: 'London', code: 'LHR' }, | ||
{ city: 'Tokyo', code: 'HND' }, | ||
{ city: 'Paris', code: 'CDG' }, | ||
{ city: 'Hong Kong', code: 'HKG' }, | ||
{ city: 'Singapore', code: 'SIN' }, | ||
{ city: 'Dubai', code: 'DXB' }, | ||
{ city: 'Shanghai', code: 'PVG' }, | ||
{ city: 'Seoul', code: 'ICN' }, | ||
{ city: 'Bangkok', code: 'BKK' }, | ||
{ city: 'Amsterdam', code: 'AMS' }, | ||
{ city: 'Beijing', code: 'PEK' }, | ||
{ city: 'Frankfurt', code: 'FRA' }, | ||
{ city: 'Cape Town', code: 'CPT' }, | ||
{ city: 'Sydney', code: 'SYD' }, | ||
{ city: 'Melbourne', code: 'MEL' }, | ||
{ city: 'Toronto', code: 'YYZ' }, | ||
{ city: 'Vancouver', code: 'YVR' }, | ||
{ city: 'Montreal', code: 'YUL' }, | ||
{ city: 'Brussels', code: 'BRU' }, | ||
{ city: 'Copenhagen', code: 'CPH' }, | ||
{ city: 'Oslo', code: 'OSL' }, | ||
{ city: 'Stockholm', code: 'ARN' }, | ||
{ city: 'Helsinki', code: 'HEL' }, | ||
{ city: 'Rome', code: 'FCO' }, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { USE_CASES } from '../../../client/components/common/content'; | ||
import { generateUseCaseMetadata } from '../../../client/components/common/seo'; | ||
import { WebScrapingUseCase } from '../WebScraping'; | ||
|
||
export const metadata = generateUseCaseMetadata(USE_CASES.webScraping); | ||
|
||
export default function WebScrapingPage() { | ||
return <WebScrapingUseCase />; | ||
} |
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { USE_CASES } from '../../client/components/common/content'; | ||
import { generateUseCaseMetadata } from '../../client/components/common/seo'; | ||
import { WebScrapingUseCase } from './WebScraping'; | ||
|
||
export const metadata = generateUseCaseMetadata(USE_CASES.webScraping); | ||
|
||
export default function WebScrapingPage() { | ||
return <WebScrapingUseCase />; | ||
} |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters