-
-
Notifications
You must be signed in to change notification settings - Fork 11
DRAFT 754-feat: Short track #755
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
Changes from 6 commits
8d92ad6
5b3503c
e35ee0a
59b7ebe
a85bc42
7bec9fa
029ec3a
a02d9b0
56f8634
1998711
9273847
6552985
e2569f8
f69ac59
daf7759
18be705
296eca2
45b7579
a416f66
4193618
d318d0c
5bf7f4e
b628f25
0e3e759
663c7c9
47ae479
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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', | ||
}, | ||
]; |
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, | ||
}, | ||
]; |
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? 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. Delete |
||
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? 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. it's prettier. Remove it |
||
': 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: | ||
|
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
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.
update icons