tiny CSS update and deployment url change
parent
b34daa4c09
commit
c75ed15b6e
@ -1,48 +1,33 @@
|
||||
/* <--- Imports ---> */
|
||||
import { Helmet } from "react-helmet"
|
||||
|
||||
import React from 'react';
|
||||
import BottomBar from './BottomBar';
|
||||
import SideContactBar from './SideContactBar';
|
||||
import TopNavBar from './TopNavBar';
|
||||
|
||||
import React from 'react'
|
||||
import BottomBar from './BottomBar'
|
||||
import SideContactBar from './SideContactBar'
|
||||
import TopNavBar from './TopNavBar'
|
||||
|
||||
/* <--- Resources ---> */
|
||||
|
||||
import '../resources/style.css';
|
||||
import favicon from '../resources/favicon.ico'
|
||||
import logo192 from '../resources/logo192.png'
|
||||
import '../resources/style.css'
|
||||
|
||||
|
||||
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>
|
||||
<TopNavBar />
|
||||
{/* ---TO DO: Banner--- */}
|
||||
</header>
|
||||
const Layout = ({ children }) => {
|
||||
return (
|
||||
<div className="Layout">
|
||||
<header>
|
||||
<TopNavBar />
|
||||
{/* ---TO DO: Banner--- */}
|
||||
</header>
|
||||
|
||||
<div className="FeedWrap">
|
||||
|
||||
{children}
|
||||
<div className="FeedWrap">
|
||||
{children}
|
||||
<SideContactBar />
|
||||
</div>
|
||||
|
||||
<SideContactBar />
|
||||
</div>
|
||||
<footer>
|
||||
<hr/>
|
||||
<BottomBar />
|
||||
</footer>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
<footer>
|
||||
<hr/>
|
||||
<BottomBar />
|
||||
</footer>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
export default Layout
|
||||
export default Layout
|
||||
|
Loading…
Reference in New Issue