Skip to content

Commit e447a32

Browse files
feat: v22.7.0
1 parent d0ffad1 commit e447a32

File tree

7 files changed

+143
-184
lines changed

7 files changed

+143
-184
lines changed

links

Lines changed: 0 additions & 19 deletions
This file was deleted.

package-lock.json

Lines changed: 20 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/App.js

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,28 @@ function App() {
1616
<div className="App d-flex flex-column h-100">
1717
<Navbar hostUrl="." titleShort="SWE Course" titleLong="Software Engineering Course"/>
1818
<div className="container-fluid Switch">
19-
<div className="row text-right">
19+
<div className="row text-right bg-light">
2020
<div className="offset-sm-8 col-sm small pr-5 mr-sm-5 pb-1">
21-
<Link to={'/calendar'} className="text-dark">calendar</Link> &#183; <Link to={'/blog'} className="text-dark">blog</Link> &#183; <Link to={'/links'} className="text-dark">links</Link>
21+
&#183;&nbsp;
22+
{[/*
23+
{
24+
title: 'calendar',
25+
link: '/calendar'
26+
},
27+
{
28+
title: 'articles',
29+
link: '/blog'
30+
},*/
31+
{
32+
title: 'links',
33+
link: '/links'
34+
},
35+
].map((t, ti) =>
36+
<span>
37+
<Link key={ti.toString()} to={t.link} className="text-dark pr-1">{t.title}</Link>
38+
&#183;&nbsp;
39+
</span>
40+
)}
2241
</div>
2342
</div>
2443
</div>
@@ -29,7 +48,7 @@ function App() {
2948
<Route exact path='/blog' component={Blog} />
3049
<Route exact path='/links' component={Links} />
3150
</Switch>
32-
<Footer version="v21.5.0"/>
51+
<Footer version="v22.7.0"/>
3352
</div>
3453
);
3554
}

src/media/heavy.png

-12.5 KB
Binary file not shown.

src/pages/Home/Home.css

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +0,0 @@
1-
.Heavy__logo {
2-
height: 16px;
3-
}
4-
5-

0 commit comments

Comments
 (0)