-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Maxwell Omdal
committed
Nov 16, 2023
1 parent
a6b81db
commit a3a03ea
Showing
4 changed files
with
50 additions
and
1 deletion.
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
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
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,10 @@ | ||
.footer { | ||
width: 100%; | ||
margin: 0px; | ||
padding: 15px; | ||
background-color: #282c34; | ||
color: white; | ||
p { | ||
margin: 0px; | ||
} | ||
} |
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,37 @@ | ||
// Footer.js | ||
import './Footer.css'; | ||
import React from 'react'; | ||
|
||
const copyright="©2023 Sequoia Fabrica. All rights reserved." | ||
|
||
const Footer = () => { | ||
const getContactItem = () => { | ||
|
||
} | ||
|
||
const getLocationItem = () => { | ||
|
||
} | ||
|
||
const getDonationItem = () => { | ||
|
||
} | ||
|
||
const footerItems = [] | ||
return ( | ||
<footer className='footer'> | ||
<ul> | ||
{footerItems.map((item, index) => ( | ||
<li key={index}>{item}</li> | ||
))} | ||
</ul> | ||
<div> | ||
<p>{copyright}</p> | ||
</div> | ||
</footer> | ||
); | ||
}; | ||
|
||
|
||
|
||
export default Footer; |