generated from theodorusclarence/ts-nextjs-tailwind-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add map with visited countries, regions, states
- Loading branch information
Showing
3 changed files
with
310 additions
and
4 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
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,224 @@ | ||
export const countriesVisited = [ | ||
{ | ||
title: 'Austria', | ||
id: 'AT', | ||
}, | ||
{ | ||
title: 'Belgium', | ||
id: 'BE', | ||
}, | ||
{ | ||
title: 'China', | ||
id: 'CN', | ||
}, | ||
{ | ||
title: 'France', | ||
id: 'FR', | ||
}, | ||
{ | ||
title: 'Germany', | ||
id: 'DE', | ||
}, | ||
{ | ||
title: 'Iceland', | ||
id: 'IS', | ||
}, | ||
{ | ||
title: 'Ireland', | ||
id: 'IE', | ||
}, | ||
{ | ||
title: 'Italy', | ||
id: 'IT', | ||
}, | ||
{ | ||
title: 'Malta', | ||
id: 'MT', | ||
}, | ||
{ | ||
title: 'Monaco', | ||
id: 'MC', | ||
}, | ||
{ | ||
title: 'The Netherlands', | ||
id: 'NL', | ||
}, | ||
{ | ||
title: 'Poland', | ||
id: 'PL', | ||
}, | ||
{ | ||
title: 'Portugal', | ||
id: 'PT', | ||
}, | ||
{ | ||
title: 'Russia', | ||
id: 'RU', | ||
}, | ||
{ | ||
title: 'San Marino', | ||
id: 'SM', | ||
}, | ||
{ | ||
title: 'Slovakia', | ||
id: 'SK', | ||
}, | ||
{ | ||
title: 'Spain', | ||
id: 'ES', | ||
}, | ||
{ | ||
title: 'Switzerland', | ||
id: 'CH', | ||
}, | ||
{ | ||
title: 'United Kingdom', | ||
id: 'GB', | ||
}, | ||
{ | ||
title: 'United States', | ||
id: 'US', | ||
}, | ||
{ | ||
title: 'Vatican City', | ||
id: 'VA', | ||
}, | ||
]; | ||
|
||
export const usStatesVisited = [ | ||
{ | ||
name: 'Alabama', | ||
id: 'US-AL', | ||
}, | ||
{ | ||
name: 'California', | ||
id: 'US-CA', | ||
}, | ||
{ | ||
name: 'Delaware', | ||
id: 'US-DE', | ||
}, | ||
{ | ||
name: 'Florida', | ||
id: 'US-FL', | ||
}, | ||
{ | ||
name: 'Georgia', | ||
id: 'US-GA', | ||
}, | ||
{ | ||
name: 'Maryland', | ||
id: 'US-MD', | ||
}, | ||
{ | ||
name: 'New Jersey', | ||
id: 'US-NJ', | ||
}, | ||
{ | ||
name: 'New York', | ||
id: 'US-NY', | ||
}, | ||
{ | ||
name: 'North Carolina', | ||
id: 'US-NC', | ||
}, | ||
{ | ||
name: 'Pennsylvania', | ||
id: 'US-PA', | ||
}, | ||
{ | ||
name: 'South Carolina', | ||
id: 'US-SC', | ||
}, | ||
{ | ||
name: 'Texas', | ||
id: 'US-TX', | ||
}, | ||
{ | ||
name: 'Virginia', | ||
id: 'US-VA', | ||
}, | ||
{ | ||
name: 'West Virginia', | ||
id: 'US-WV', | ||
}, | ||
]; | ||
|
||
export const italyVisitedRegions = [ | ||
{ | ||
name: 'Campania', | ||
id: 'IT-72', | ||
}, | ||
{ | ||
name: 'Emilia-Romagna', | ||
id: 'IT-45', | ||
}, | ||
{ | ||
name: 'Friuli Venezia Giulia', | ||
id: 'IT-36', | ||
}, | ||
{ | ||
name: 'Lazio', | ||
id: 'IT-62', | ||
}, | ||
{ | ||
name: 'Liguria', | ||
id: 'IT-42', | ||
}, | ||
{ | ||
name: 'Lombardia', | ||
id: 'IT-25', | ||
}, | ||
{ | ||
name: 'Marche', | ||
id: 'IT-57', | ||
}, | ||
{ | ||
name: 'Piemonte', | ||
id: 'IT-21', | ||
}, | ||
{ | ||
name: 'Toscana', | ||
id: 'IT-52', | ||
}, | ||
{ | ||
name: 'Trentino-Alto Adige', | ||
id: 'IT-32', | ||
}, | ||
{ | ||
name: "Valle d'Aosta", | ||
id: 'IT-23', | ||
}, | ||
{ | ||
name: 'Veneto', | ||
id: 'IT-34', | ||
}, | ||
]; | ||
|
||
export const ukVisitedRegions = [ | ||
'GB-SCT', | ||
'GB-NIR', | ||
'GB-UKC', | ||
'GB-UKD', | ||
'GB-UKE', | ||
'GB-UKG', | ||
'GB-UKF', | ||
'GB-UKH', | ||
'GB-UKI', | ||
'GB-UKJ', | ||
]; | ||
|
||
// const countriesLived = [ | ||
// { | ||
// "name": "France" | ||
// }, | ||
// { | ||
// "name": "Italy" | ||
// }, | ||
// { | ||
// "name": "United Kingdom" | ||
// }, | ||
// { | ||
// "name": "United States" | ||
// } | ||
// ] |