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

EPMGCIP-171: Implement Homepage with Slider Featuring Exhibits #30

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
0b3227e
EPMGCIP-171: Include ".idea" and ".vscode" folders into .gitignore
Dzmitry-Yaniuk Nov 13, 2024
61ab599
EPMGCIP-171: Implement GraphQL query to fetch top latest exhibits
Dzmitry-Yaniuk Nov 18, 2024
2119448
EPMGCIP-171: Implement Home page with image gallery, update usages
Dzmitry-Yaniuk Nov 19, 2024
90e448c
EPMGCIP-171: Fix legacy UT for "ImageGallery" test
Dzmitry-Yaniuk Nov 19, 2024
6c0e9c8
EPMGCIP-171: Add cursor pointer to image gallery item
Dzmitry-Yaniuk Nov 19, 2024
baad64b
EPMGCIP-171: Adjust "Header" component to make it logo clickable
Dzmitry-Yaniuk Nov 19, 2024
98ad954
EPMGCIP-171: Update import of "useRouter" hook from navigation
Dzmitry-Yaniuk Nov 19, 2024
61272dc
EPMGCIP-171: Implement custom "ImageGalleryArrow" component, update u…
Dzmitry-Yaniuk Nov 20, 2024
9845327
EPMGCIP-171: Fix obsolete test for "ImageGallery" with require prop
Dzmitry-Yaniuk Nov 20, 2024
07871b4
EPMGCIP-171: Implement UTs for "Home.tsx" component
Dzmitry-Yaniuk Nov 21, 2024
31eaf02
EPMGCIP-171: Add NodeJS version restriction for "package.json" to be …
Dzmitry-Yaniuk Nov 21, 2024
6cb0da7
EPMGCIP-171: Remove extra "classnames" package due to duplication, re…
Dzmitry-Yaniuk Nov 23, 2024
406b068
EPMGCIP-171: Add new constants file "routes.ts", declare basic consta…
Dzmitry-Yaniuk Nov 23, 2024
8bd1795
EPMGCIP-171: Remove unused locale hook in "Header" component
Dzmitry-Yaniuk Nov 23, 2024
0ef8057
EPMGCIP-171: Update layout in "ImageGallery" to make links clickable …
Dzmitry-Yaniuk Nov 23, 2024
dd3150f
EPMGCIP-171: Update "Header" with "a" tag for logo title for better s…
Dzmitry-Yaniuk Nov 23, 2024
d9cfb70
EPMGCIP-171: Adjust UTs for recently modified components
Dzmitry-Yaniuk Nov 23, 2024
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
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,9 @@ yarn-error.log*
next-env.d.ts

.vercel

# JetBrains IDE
/.idea

# VS Code
/.vscode
3 changes: 2 additions & 1 deletion messages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@
"pause": "Pause",
"forward": "Forward",
"rewind": "Rewind",
"logo": "Logo"
"logo": "Logo",
"homePageTitle": "Welcome to our official webpage"
}
3 changes: 2 additions & 1 deletion messages/ka.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@
"pause": "Pause",
"forward": "Forward",
"rewind": "Rewind",
"logo": "Logo"
"logo": "Logo",
"homePageTitle": "Welcome to our official webpage"
}
4 changes: 3 additions & 1 deletion messages/ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,7 @@
"pause": "Пауза",
"forward": "Вперед",
"rewind": "Назад",
"logo": "Лого"
"logo": "Лого",
"homeLink": "Главная",
"homePageTitle": "Добро пожаловать на нашу главную страницу!"
}
3 changes: 2 additions & 1 deletion messages/uz.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@
"pause": "Pauza",
"forward": "Oldinga",
"rewind": "Orqaga",
"logo": "Logo"
"logo": "Logo",
"homePageTitle": "Welcome to our official webpage"
}
Loading