-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsocial.tsx
More file actions
50 lines (49 loc) · 1.54 KB
/
social.tsx
File metadata and controls
50 lines (49 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import { Icon } from '../../../components/atoms/icon/icon'
import { Title } from '../../../components/atoms/title/title'
import { Link, LinkProps } from '../../../components/atoms/link/link'
export const Social = () => {
const iconClasses = 'h-8 w-8 hover:text-primary transition-colors active:text-red-700'
return (
<div className='flex flex-col items-center gap-6 md:flex-row'>
<div>
<Title as='h6' variant='small'>
Connect with us
</Title>
</div>
<div className='flex items-center gap-6'>
<Link
href='https://github.com/spiceai/spiceai'
target='_blank'
rel='noreferrer'
aria-label='GitHub repository for SpiceAI'
>
<Icon iconName='github' className={iconClasses} />
</Link>
<Link
href='https://x.com/spice_ai'
target='_blank'
rel='noreferrer'
aria-label='SpiceAI on Twitter'
>
<Icon iconName='twitter' className='h-7 w-7 hover:text-primary' />
</Link>
<Link
href='https://spice.ai/slack'
target='_blank'
rel='noreferrer'
aria-label='Spice.ai Slack Community'
>
<Icon iconName='discord' className={iconClasses} />
</Link>
<Link
href='https://www.youtube.com/@spiceai'
target='_blank'
rel='noreferrer'
aria-label='SpiceAI YouTube'
>
<Icon iconName='youtube' className={iconClasses} />
</Link>
</div>
</div>
)
}