-
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
1 parent
2f0d35c
commit 8a4d039
Showing
4 changed files
with
57 additions
and
47 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
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,35 @@ | ||
import { footerNavigation } from '../landing-page/contentSections'; | ||
|
||
const Footer = () => { | ||
return ( | ||
<div> | ||
<footer | ||
aria-labelledby='footer-heading' | ||
className='relative mt-5 border-t border-gray-900/10' | ||
> | ||
<div className='flex items-start justify-end mt-10 gap-20 mx-auto max-w-7xl sm:px-6 lg:px-8'> | ||
<div> | ||
<h3 className='text-sm font-semibold leading-6 text-captn-dark-blue dark:text-captn-light-cream'> | ||
Company | ||
</h3> | ||
<ul role='list' className='mt-6 space-y-4'> | ||
{footerNavigation.company.map((item) => ( | ||
<li key={item.name}> | ||
<a | ||
href={item.href} | ||
className='text-sm leading-6 text-captn-dark-blue hover:text-captn-light-blue dark:text-captn-light-cream' | ||
target={`${item.name === 'airt' ? '_blank' : '_self'}`} | ||
> | ||
{item.name} | ||
</a> | ||
</li> | ||
))} | ||
</ul> | ||
</div> | ||
</div> | ||
</footer> | ||
</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
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