This repository was archived by the owner on Apr 25, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +12
-4
lines changed
Expand file tree Collapse file tree 6 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -5,3 +5,4 @@ PREACT_APP_GOOGLE_API_KEY=
55PREACT_APP_GOOGLE_CAL_ID =
66PREACT_APP_BUILD_ID =
77PREACT_APP_PHOTOS_ROTATION_INTERVAL_MS = 30000
8+ PREACT_APP_ABOUT_URL = https://github.com/beshur/TableStatusWeb/
Original file line number Diff line number Diff line change 66+ Weather (openweathermap integration)
77+ Agenda for the day (google cal integration)
88+ Notes
9- + Photos (?)
9+ + Photos
1010- Blog (WP integration)
1111- Wishlist (hotelka integration)
Original file line number Diff line number Diff line change 11{
22 "private" : true ,
33 "name" : " tablestatus" ,
4- "version" : " 0.4 .0" ,
4+ "version" : " 0.5 .0" ,
55 "license" : " MIT" ,
66 "scripts" : {
77 "start" : " per-env" ,
Original file line number Diff line number Diff line change 1+ export default function About ( ) {
2+ return ( < div > < a href = { process . env . PREACT_APP_ABOUT_URL } > О проекте/About</ a > </ div > )
3+ }
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import Header from './header';
77import Home from '../routes/home' ;
88
99import BuildId from './build_id' ;
10+ import About from './about' ;
1011
1112export default class App extends Component {
1213
@@ -49,7 +50,10 @@ export default class App extends Component {
4950 < Home path = "/" googleApiLoaded = { googleApiLoaded } />
5051 </ Router >
5152
52- < BuildId />
53+ < div style = "display: flex; text-align: center; justify-content: center;" >
54+ < BuildId />
55+ < About />
56+ </ div >
5357 </ div >
5458 ) ;
5559 }
Original file line number Diff line number Diff line change 11export default function BuildId ( ) {
2- return ( < div data-build-id = { process . env . PREACT_APP_BUILD_ID } > 🏗 { process . env . PREACT_APP_BUILD_ID } </ div > )
2+ return ( < div data-build-id = { process . env . PREACT_APP_BUILD_ID } style = "margin-right: 15px; line-height: 14px;" > 🏗 { process . env . PREACT_APP_BUILD_ID } </ div > )
33}
You can’t perform that action at this time.
0 commit comments