Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update production projects #19

Merged
merged 2 commits into from
Dec 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ekb",
"type": "module",
"version": "1.1.4",
"version": "1.1.5",
"repository": {
"type": "git",
"url": "https://github.com/ekaterinburgdev/ekaterinburg-ui.git"
Expand Down
8 changes: 4 additions & 4 deletions src/lib/components/ProjectsPanel/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ export const PROJECT_MAP = {
id: 'map',
fullTitle: 'Карта \n Екатеринбурга',
shortTitle: 'Карта',
link: 'https://map.ekaterinburg.io/',
link: 'https://map.ekaterinburg.city/',
logo: mapIcon,
};
export const PROJECT_GUIDES = {
id: 'guides',
fullTitle: 'Руководства \n Екатеринбурга',
shortTitle: 'Руководства',
link: 'https://guides.ekaterinburg.io/',
link: 'https://guides.ekaterinburg.city/',
logo: guidesIcon,
};
export const PROJECT_TRANSPORT = {
id: 'transport',
fullTitle: 'Транспорт \n Екатеринбурга',
shortTitle: 'Транспорт',
link: 'https://transport.ekaterinburg.io/',
link: 'https://transport.ekaterinburg.city/',
logo: transportIcon,
};
export const PROJECT_DESIGN = {
Expand All @@ -42,6 +42,6 @@ export const PROJECT_DEV = {

export const ALPHA_PROJECTS = [PROJECT_GUIDES, PROJECT_TRANSPORT];

export const PRODUCTION_PROJECTS = [PROJECT_DESIGN, PROJECT_DEV, PROJECT_MAP];
export const PRODUCTION_PROJECTS = [PROJECT_DESIGN, PROJECT_DEV, PROJECT_MAP, PROJECT_GUIDES];

export const ALL_PROJECTS = [...ALPHA_PROJECTS, ...PRODUCTION_PROJECTS];
Loading