Last change
on this file was 364f27d, checked in by MetodiMladenovski <meto.18@…>, 14 months ago |
added projects and db scripts
|
-
Property mode
set to
100644
|
File size:
520 bytes
|
Line | |
---|
1 | import React from "react";
|
---|
2 |
|
---|
3 | const Footer = () => {
|
---|
4 | const year = new Date().getFullYear();
|
---|
5 |
|
---|
6 | return (
|
---|
7 | <div>
|
---|
8 | <footer className="rounded-top" style={{width: 'calc(750px - 50vw)', minWidth:'80%', maxWidth: '100%', margin: 'auto', position: 'fixed', bottom: 0, left:0, right:0, backgroundColor: '#fed9b7', textAlign: 'center', padding: '6px'}}>
|
---|
9 | {`Copyright © FINKI Code ${year}`}
|
---|
10 | </footer>
|
---|
11 | </div>
|
---|
12 | )
|
---|
13 | };
|
---|
14 |
|
---|
15 | export default Footer; |
---|
Note:
See
TracBrowser
for help on using the repository browser.