-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* create footer component * Export footer from index * add styles and structure to footer * place footer on page
- Loading branch information
1 parent
3a7ea55
commit 0bc5eff
Showing
3 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import React from 'react'; | ||
|
||
const Footer = () => { | ||
|
||
return ( | ||
<div className="text-center pb-5 pt-3 | ||
bg-gray-300 w-full overflow-x-auto whitespace-nowrap"> | ||
<a href="https://github.com/thearyadev/top500-aggregator" className='underline'> | ||
Support this project on Github | ||
</a> | ||
</div> | ||
) | ||
} | ||
export default Footer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
export {default as Header} from "./header/header" | ||
export {default as Card} from "./card/card" | ||
export {default as BarChart} from "./charts/barChart" | ||
export {default as LineChart} from "./charts/lineChart" | ||
export {default as LineChart} from "./charts/lineChart" | ||
export {default as Footer} from './footer/footer' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters