Skip to content

Commit

Permalink
314 footer changes (#315)
Browse files Browse the repository at this point in the history
  • Loading branch information
harishmohanraj authored Apr 23, 2024
1 parent d2d5ec9 commit fd75b17
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
10 changes: 9 additions & 1 deletion app/src/client/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,15 @@ export default function App({ children }: { children: ReactNode }) {
<Footer />
<div className='flex items-center h-20 '>
<p className='text-center w-full text-sm text-captn-dark-blue opacity-50'>
© 2024 airt. All rights reserved.
© 2024{' '}
<a
href='https://airt.ai'
className='text-sm leading-6 hover:text-captn-light-blue text-captn-dark-blue underline'
target='_blank'
>
airt
</a>
. All rights reserved.
</p>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions app/src/client/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ const Footer = () => {
>
<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'>
{/* <h3 className='text-sm font-semibold leading-6 text-captn-dark-blue dark:text-captn-light-cream'>
Company
</h3>
</h3> */}
<ul role='list' className='mt-6 space-y-4'>
{footerNavigation.company.map((item) => (
<li key={item.name}>
Expand Down
5 changes: 2 additions & 3 deletions app/src/client/landing-page/contentSections.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,7 @@ export const footerNavigation = {
{ name: 'Blog', href: BLOG_URL },
],
company: [
{ name: 'airt', href: 'https://airt.ai/' },
{ name: 'Privacy', href: '/privacy' },
{ name: 'Terms of Service', href: '/toc' },
{ name: 'Privacy Policy', href: '/privacy' },
{ name: 'Terms & Conditions', href: '/toc' },
],
};

0 comments on commit fd75b17

Please sign in to comment.