parent
20f1379fbb
commit
3233834df6
@ -0,0 +1,37 @@
|
||||
.footer {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
width: 100%;
|
||||
background-color: #1c1c1c;
|
||||
}
|
||||
|
||||
.footer > * {
|
||||
width: 150px;
|
||||
padding: 50px;
|
||||
color: #777;
|
||||
}
|
||||
|
||||
.footer .left {
|
||||
text-align: left;
|
||||
}
|
||||
.footer .left a {
|
||||
color: #777;
|
||||
}
|
||||
.footer .left a:hover {
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
.footer .mid {
|
||||
text-align: center;
|
||||
color: #777;
|
||||
}
|
||||
|
||||
.footer .right {
|
||||
text-align: right;
|
||||
}
|
||||
.footer .right a {
|
||||
color: #777;
|
||||
}
|
||||
.footer .right a:hover {
|
||||
color: #aaa;
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
import './Css/Footer.css'
|
||||
|
||||
export default function Footer() {
|
||||
return (
|
||||
<div className="footer">
|
||||
<div className="left">
|
||||
<a href='https://mnrva.dev'>view the source code on github</a>
|
||||
</div>
|
||||
<div className="mid">© MNRVA 2023</div>
|
||||
<div className="right">
|
||||
<a href='https://twitter.com/owltierdotcom'>follow owltier on twitter</a>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@ -1,11 +1,15 @@
|
||||
import { Outlet } from 'react-router-dom'
|
||||
import Header from '../Components/Header'
|
||||
import Footer from '../Components/Footer'
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<>
|
||||
<div className='full-container'>
|
||||
<Header />
|
||||
<Outlet />
|
||||
</div>
|
||||
<Footer />
|
||||
</>
|
||||
)
|
||||
}
|
||||
Loading…
Reference in new issue