footer component
This commit is contained in:
10
src/components/Footer/Footer.js
Normal file
10
src/components/Footer/Footer.js
Normal file
@ -0,0 +1,10 @@
|
||||
import React from 'react';
|
||||
import './footer.css';
|
||||
|
||||
export const Footer = () => {
|
||||
return (
|
||||
<footer>
|
||||
<div>2021 © Outstaffing</div>
|
||||
</footer>
|
||||
)
|
||||
}
|
11
src/components/Footer/footer.css
Normal file
11
src/components/Footer/footer.css
Normal file
@ -0,0 +1,11 @@
|
||||
footer {
|
||||
padding: 0 5rem;
|
||||
}
|
||||
|
||||
footer>div {
|
||||
border-top: 2px solid #73c141;
|
||||
padding: 1rem;
|
||||
font-family: 'Muller';
|
||||
font-weight: 300;
|
||||
font-size: 1.2em;
|
||||
}
|
Reference in New Issue
Block a user