tiny CSS update and deployment url change
parent
b34daa4c09
commit
c75ed15b6e
@ -1,48 +1,33 @@
|
|||||||
/* <--- Imports ---> */
|
/* <--- Imports ---> */
|
||||||
import { Helmet } from "react-helmet"
|
import React from 'react'
|
||||||
|
import BottomBar from './BottomBar'
|
||||||
import React from 'react';
|
import SideContactBar from './SideContactBar'
|
||||||
import BottomBar from './BottomBar';
|
import TopNavBar from './TopNavBar'
|
||||||
import SideContactBar from './SideContactBar';
|
|
||||||
import TopNavBar from './TopNavBar';
|
|
||||||
|
|
||||||
|
|
||||||
/* <--- Resources ---> */
|
/* <--- Resources ---> */
|
||||||
|
import '../resources/style.css'
|
||||||
import '../resources/style.css';
|
|
||||||
import favicon from '../resources/favicon.ico'
|
|
||||||
import logo192 from '../resources/logo192.png'
|
|
||||||
|
|
||||||
|
|
||||||
const Layout = ({ pageTitle, children }) => {
|
|
||||||
return (
|
|
||||||
<div className="Layout">
|
|
||||||
<Helmet>
|
|
||||||
<meta charSet="utf-8" />
|
|
||||||
<title>{pageTitle} - Studentská oborová rada IT PedF UK v Praze</title>
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
||||||
<meta name="theme-color" content="#000000" />
|
|
||||||
<link rel="icon" href={favicon}></link>
|
|
||||||
<link rel="apple-touch-icon" href={logo192} />
|
|
||||||
</Helmet>
|
|
||||||
|
|
||||||
<header>
|
const Layout = ({ children }) => {
|
||||||
<TopNavBar />
|
return (
|
||||||
{/* ---TO DO: Banner--- */}
|
<div className="Layout">
|
||||||
</header>
|
<header>
|
||||||
|
<TopNavBar />
|
||||||
|
{/* ---TO DO: Banner--- */}
|
||||||
|
</header>
|
||||||
|
|
||||||
<div className="FeedWrap">
|
<div className="FeedWrap">
|
||||||
|
{children}
|
||||||
{children}
|
<SideContactBar />
|
||||||
|
</div>
|
||||||
|
|
||||||
<SideContactBar />
|
<footer>
|
||||||
</div>
|
<hr/>
|
||||||
|
<BottomBar />
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
<footer>
|
export default Layout
|
||||||
<hr/>
|
|
||||||
<BottomBar />
|
|
||||||
</footer>
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
export default Layout
|
|
||||||
|
Loading…
Reference in New Issue