|
@@ -20,10 +20,10 @@ function getSection(sectionIndex) {
|
|
|
return () => (
|
|
return () => (
|
|
|
<div>
|
|
<div>
|
|
|
<div className="breadcrumb-wrapper">
|
|
<div className="breadcrumb-wrapper">
|
|
|
- <Link to='/' className="breadcrumb light-blue-text"><i className="material-icons">home</i></Link>
|
|
|
|
|
|
|
+ <Link to='/' className="breadcrumb teal-text"><i className="material-icons">home</i></Link>
|
|
|
<span className="breadcrumb grey-text">{section.title}</span>
|
|
<span className="breadcrumb grey-text">{section.title}</span>
|
|
|
</div>
|
|
</div>
|
|
|
- <h4 className="header orange-text">{section.title}</h4>
|
|
|
|
|
|
|
+ <h4 className="header brown-text">{section.title}</h4>
|
|
|
{getSectionPageLinks(section)}
|
|
{getSectionPageLinks(section)}
|
|
|
</div>
|
|
</div>
|
|
|
);
|
|
);
|
|
@@ -43,7 +43,7 @@ function getSectionPagination(section, activeIndex) {
|
|
|
</li>
|
|
</li>
|
|
|
{
|
|
{
|
|
|
section.items.map((page, pIndex) => (
|
|
section.items.map((page, pIndex) => (
|
|
|
- <li key={pIndex} className={ activeIndex === pIndex ? "active orange": "waves-effect"}>
|
|
|
|
|
|
|
+ <li key={pIndex} className={ activeIndex === pIndex ? "active brown": "waves-effect"}>
|
|
|
<Link to={section.path + page.path}>{pIndex + 1}</Link>
|
|
<Link to={section.path + page.path}>{pIndex + 1}</Link>
|
|
|
</li>
|
|
</li>
|
|
|
))
|
|
))
|