Feature/sc 26957/sidebar with create a sheet and educational
Description
This PR implements the NavSidebar of the Sheets Homepage which displays two sections with text and buttons. The sections are "Create A Sheet" and "What is a Source Sheet?"
Code Changes
Since I used the NavSidebar component, I implemented WhatIsASourceSheet and CreateASheet as Modules in NavSidebar.jsx. I used, and modified, a previously existing Module component TitledText, which has never been made use of before. Previously, TitledText took as inputs english/hebrew titles and english/hebrew text and created a Module component with the corresponding title and text. I now implemented so that it takes the title and text as a dictionary of 'en' and 'he', and it can now receive children. In my usage of TitledText, I pass as children a button to be displayed. So, for example, the WhatIsASourceSheet component uses TitledText as follows:
const WhatIsASourceSheet = () => (
<TitledText title={{'en': 'What is a Source Sheet?', 'he': ''}}
text={{'en': '',
'he': ''}}
h1Header={true}>
<GetStartedButton/>
</TitledText>
);
Verbally discussed some additional needed changes