1import { Container } from '../../atoms/container/container'
2import { Paragraph } from '../../atoms/paragraph/paragraph'
3import { Social } from '../../molecules/social/social'
4
5import { Logo } from '../../atoms/logo/logo'
6import { Link } from '../../atoms/link/link'
7
8export const Footer = () => {
9 return (
10 <Container>
11 <footer className='flex flex-col gap-8 py-16 pt-0 md:py-20'>
12 <div className='flex flex-col items-center justify-between gap-8 md:flex-row'>
13 <Link href='https://spice.ai' target='_blank'>
14 <Logo variant='dark' />
15 </Link>
16
17 <Social />
18 </div>
19 <div className='flex flex-col items-center justify-between gap-6 md:flex-row'>
20 <nav className='flex items-center gap-6 md:gap-10'>
21 <Link href='https://docs.spice.ai/security' variant='large'>
22 Security
23 </Link>
24 <Link href='https://docs.spiceai.org' variant='large'>
25 Docs
26 </Link>
27 <Link href='https://blog.spiceai.org' variant='large'>
28 Blog
29 </Link>
30 <Link href='mailto:hey@spice.ai' variant='large'>
31 Contact
32 </Link>
33 </nav>
34 <div className='flex flex-col items-center gap-6 md:flex-row'>
35 <Paragraph variant='medium' className='text-base'>
36 Copyright © 2025 Spice AI, Inc. All rights reserved.
37 </Paragraph>
38 <div className='flex items-center gap-6'>
39 <Link
40 variant='large'
41 href='https://docs.spice.ai/legal/privacy'
42 className='text-base font-normal leading-7'
43 >
44 Privacy Policy
45 </Link>
46 <Link
47 variant='large'
48 href='https://docs.spice.ai/legal/terms'
49 className='text-base font-normal leading-7'
50 >
51 Terms of Service
52 </Link>
53 </div>
54 </div>
55 </div>
56 </footer>
57 </Container>
58 )
59}
60
1import { Container } from '../../atoms/container/container'
2import { Paragraph } from '../../atoms/paragraph/paragraph'
3import { Social } from '../../molecules/social/social'
4
5import { Logo } from '../../atoms/logo/logo'
6import { Link } from '../../atoms/link/link'
7
8export const Footer = () => {
9 return (
10 <Container>
11 <footer className='flex flex-col gap-8 py-16 pt-0 md:py-20'>
12 <div className='flex flex-col items-center justify-between gap-8 md:flex-row'>
13 <Link href='https://spice.ai' target='_blank'>
14 <Logo variant='dark' />
15 </Link>
16
17 <Social />
18 </div>
19 <div className='flex flex-col items-center justify-between gap-6 md:flex-row'>
20 <nav className='flex items-center gap-6 md:gap-10'>
21 <Link href='https://docs.spice.ai/security' variant='large'>
22 Security
23 </Link>
24 <Link href='https://docs.spiceai.org' variant='large'>
25 Docs
26 </Link>
27 <Link href='https://blog.spiceai.org' variant='large'>
28 Blog
29 </Link>
30 <Link href='mailto:hey@spice.ai' variant='large'>
31 Contact
32 </Link>
33 </nav>
34 <div className='flex flex-col items-center gap-6 md:flex-row'>
35 <Paragraph variant='medium' className='text-base'>
36 Copyright © 2025 Spice AI, Inc. All rights reserved.
37 </Paragraph>
38 <div className='flex items-center gap-6'>
39 <Link
40 variant='large'
41 href='https://docs.spice.ai/legal/privacy'
42 className='text-base font-normal leading-7'
43 >
44 Privacy Policy
45 </Link>
46 <Link
47 variant='large'
48 href='https://docs.spice.ai/legal/terms'
49 className='text-base font-normal leading-7'
50 >
51 Terms of Service
52 </Link>
53 </div>
54 </div>
55 </div>
56 </footer>
57 </Container>
58 )
59}
60