Skip to content

Commit 4f041ad

Browse files
committed
Open contact links in new tab
1 parent 57dd7ed commit 4f041ad

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

landing/components/layout/footer.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ export const FooterLink: React.FC<LinkProps> = (props) => {
8383
color="muted"
8484
fontSize="sm"
8585
textDecoration="none"
86+
target="_blank"
87+
rel="noopener noreferrer"
8688
_hover={{
8789
color: 'white',
8890
transition: 'color .2s ease-in',

landing/data/config.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Button } from '@chakra-ui/react'
22
import { Link } from '@saas-ui/react'
33
import { NextSeoProps } from 'next-seo'
4-
import { FaGithub, FaTwitter, FaLinkedin } from 'react-icons/fa'
4+
import { FaGithub, FaTwitter, FaLinkedin, FaCalendarAlt } from 'react-icons/fa'
55
import { FiCheck } from 'react-icons/fi'
66
import { Logo } from './logo'
77

@@ -81,6 +81,10 @@ const siteConfig = {
8181
href: 'mailto:contact@smoosense.ai',
8282
label: 'Contact',
8383
},
84+
{
85+
href: 'https://calendar.app.google/7ryR8DPtzYzfw1Pw7',
86+
label: <FaCalendarAlt size="14" />,
87+
},
8488
{
8589
href: 'https://www.linkedin.com/company/smoosense-ai',
8690
label: <FaLinkedin size="14" />,

0 commit comments

Comments
 (0)