-
-
Notifications
You must be signed in to change notification settings - Fork 12
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
DRAFT 754-feat: Short track #755
Draft
YulikK
wants to merge
6
commits into
main
Choose a base branch
from
feat/754-short-track
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
8d92ad6
feat: 754 - add course page
YulikK 5b3503c
refactor: 754 - add format activities
YulikK e35ee0a
refactor: 754 - lint fix
YulikK 59b7ebe
refactor: 754 - texts update
YulikK a85bc42
refactor: 754 - lint fix
YulikK 7bec9fa
refactor: 754 - update Curriculum steps
YulikK File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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,42 @@ | ||
import { type JSPath } from './courses-data.types'; | ||
import reactAngular from '@/shared/assets/icons/react-angular.svg'; | ||
import stage1 from '@/shared/assets/stages/stage-1.webp'; | ||
import stage2 from '@/shared/assets/stages/stage-2.webp'; | ||
import stage3 from '@/shared/assets/stages/stage-3.webp'; | ||
|
||
export const shortTrackPath: JSPath[] = [ | ||
{ | ||
id: 1, | ||
title: 'Step 1', | ||
description: | ||
'Fill out the application form by January 31. Expect an invitation for an interview. If there is a large number of applicants, there may be an additional test assignment.', | ||
imageSrc: stage1, | ||
}, | ||
{ | ||
id: 2, | ||
title: 'Step 2', | ||
description: | ||
'Entry Interviews: Interviews start on January 27 (to ensure all interviews are completed before Stage#2 begins on February 11). Expect an invitation to register for the course', | ||
imageSrc: stage3, | ||
}, | ||
{ | ||
id: 3, | ||
title: 'Step 3', | ||
description: | ||
'Join a team of 12-20 people under the guidance of a mentor. Self-study with provided materials, regular Q&A sessions, mock interviews, intensive practice, and a final project.', | ||
imageSrc: stage2, | ||
}, | ||
{ | ||
id: 4, | ||
title: 'Step 4', | ||
description: | ||
'At the end of the first month of the course, you will decide on a framework with your mentor. Approximate ratio: 60% React / 40% Angular', | ||
imageSrc: reactAngular, | ||
}, | ||
{ | ||
id: 5, | ||
title: 'Step 5', | ||
description: | ||
'Development of the final project in a team of 3 people under the guidance of a mentor', | ||
}, | ||
]; |
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,25 @@ | ||
import type { Trainer } from '@/entities/trainer'; | ||
import aSerhiyenia from '@/shared/assets/mentors/a-serhiyenia.webp'; | ||
import marharytaMalets from '@/shared/assets/mentors/m-malets.webp'; | ||
import nataliaLebedevaImg from '@/shared/assets/mentors/n-lebedeva.webp'; | ||
|
||
export const shortTrackTrainers: Trainer[] = [ | ||
{ | ||
name: 'Aleh Serhiyenia', | ||
role: 'Front-End Developer', | ||
bio: 'Aleh Serhiyenia works at EPAM Systems, developing web applications using Angular. He was always interested in technology and computers. Aleh received his higher education at BSUIR. For a long time, he engaged in production automation. Then he became interested in graphic design, the development of banners, logos, signs, etc. Aleh has always had a passion for programming. He passed RS School and then EPAM Lab. Now Aleh is ready to share his experience and expertise with RS School students.', | ||
photo: aSerhiyenia, | ||
}, | ||
{ | ||
name: 'Marharyta Malets', | ||
role: 'EPAM, Software Engineer', | ||
bio: 'Marharyta graduated from RS School in July 2021 and by March 2022, she became a mentor for the first time. Since then, RS School has become an essential part of her life. She is sure that she is growing and learning with her mentees. Her favorite activity is participating in technical interviews. However, she is always open to new experiences and learning opportunities.', | ||
photo: marharytaMalets, | ||
}, | ||
{ | ||
name: 'Natalia Lebedeva', | ||
role: 'EPAM, Junior Software Engineer', | ||
bio: 'Natalia trained at RS School, got into the spirit of the school and became its mentor and contributor. After passing through the EPAM lab, she realized her dream and became a developer. Loves spending time in the company of like-minded people and organizes RS School community meetings in Almaty. Wants to help others on their difficult path.', | ||
photo: nataliaLebedevaImg, | ||
}, | ||
]; |
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 |
---|---|---|
|
@@ -3,13 +3,17 @@ export const communicationText = { | |
title: 'Communication', | ||
subTitle: 'Discord is the main communication channel in RS School', | ||
subTitleJs: 'RS School uses two main communication channels:', | ||
// subTitleST: 'RS School uses two main communication channels:', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we need it? |
||
firstParagraphFirstHalf: 'Here is link for the ', | ||
discordParagraphTextJs: ': Join the Discord server to see the latest news and chat with students.', | ||
discordParagraphTextJs: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why are you adding a line break? |
||
': Join the Discord server to see the latest news and chat with students.', | ||
discordLink: 'course Discord server', | ||
discordLinkJs: 'Discord', | ||
firstParagraphSecondHalf: ', where you can see latest news and chat with students.', | ||
telegramParagraphTextJs: ': You can also join the official Telegram channel for updates and discussions.', | ||
discordNote: 'Attention! In some countries, access to Discord requires the use of a VPN. If you are having trouble connecting, please try using a reliable VPN service.', | ||
telegramParagraphTextJs: | ||
': You can also join the official Telegram channel for updates and discussions.', | ||
discordNote: | ||
'Attention! In some countries, access to Discord requires the use of a VPN. If you are having trouble connecting, please try using a reliable VPN service.', | ||
secondParagraphFirstHalf: 'There are channels in ', | ||
telegramLink: 'Telegram', | ||
secondParagraphSecondHalf: | ||
|
@@ -29,7 +33,8 @@ export const communicationText = { | |
firstParagraphSecondHalf: | ||
', где вы можете посмотреть последние новости, задать вопросы и общаться со студентами.', | ||
telegramParagraphTextJs: '', | ||
discordNote: 'Внимание! В некоторых странах для доступа к Discord требуется использование VPN. Если у вас возникают трудности с подключением, попробуйте использовать надёжный VPN-сервис.', | ||
discordNote: | ||
'Внимание! В некоторых странах для доступа к Discord требуется использование VPN. Если у вас возникают трудности с подключением, попробуйте использовать надёжный VPN-сервис.', | ||
secondParagraphFirstHalf: 'Также есть каналы в ', | ||
telegramLink: 'Телеграм', | ||
secondParagraphSecondHalf: | ||
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Icon WO border. I remember we would like to remove all borders there, but I suppose we should remove them at the same time