Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

314 footer changes #315

Merged
merged 2 commits into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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' },
],
};
Loading