forked from Redocly/redoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5b54807
commit ba68b55
Showing
5 changed files
with
338 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,318 @@ | ||
/* eslint-disable import/no-internal-modules */ | ||
import * as React from 'react'; | ||
import styled from '../../styled-components'; | ||
import { MdOutlineMailOutline } from 'react-icons/md'; | ||
import { IoLocationOutline } from 'react-icons/io5'; | ||
import { Divider } from 'antd'; | ||
|
||
const tunkBaseUrl = 'https://tunk.ai'; | ||
|
||
const FooterWrapper = styled.div` | ||
background: #fff; | ||
padding: 1rem 2rem; | ||
display: grid; | ||
margin: auto; | ||
grid-template-columns: repeat(12, minmax(0, 1fr)); | ||
gap: 1rem; | ||
max-width: 1920px; | ||
@media (max-width: 1024px) { | ||
padding: 1rem; | ||
} | ||
`; | ||
const Anchor = styled.a` | ||
text-decoration: none; | ||
color: #0f3057; | ||
`; | ||
const Logo = styled.div` | ||
grid-column: span 2 / span 2; | ||
display: flex; | ||
@media (max-width: 1024px) { | ||
grid-column: span 12 / span 12; | ||
} | ||
`; | ||
const Image = styled.img` | ||
width: 133px; | ||
height: 52px; | ||
object-fit: contain; | ||
max-width: 100%; | ||
`; | ||
const LinksWrapper = styled.div` | ||
grid-column: span 2 / span 2; | ||
@media (max-width: 1024px) { | ||
grid-column: span 12 / span 12; | ||
} | ||
`; | ||
|
||
const VerticalList = styled.ul` | ||
display: flex; | ||
flex-direction: column; | ||
grid-column: span 6 / span 6; | ||
gap: 1.5rem; | ||
align-items: start; | ||
justify-content: space-between; | ||
list-style: none; | ||
padding: 0; | ||
`; | ||
|
||
const ListItem = styled.li` | ||
cursor: pointer; | ||
white-space: nowrap; | ||
font-size: 1rem; | ||
font-weight: 600; | ||
line-height: 1.5rem; | ||
text-align: left; | ||
max-width: 100%; | ||
list-style: none; | ||
`; | ||
const ListSubItem = styled.li` | ||
cursor: pointer; | ||
list-style: none; | ||
white-space: nowrap; | ||
font-size: 1rem; | ||
line-height: 1.5rem; | ||
text-align: left; | ||
max-width: 100%; | ||
white-space: break-spaces; | ||
`; | ||
const AddressAndSocialWrapper = styled.div` | ||
grid-column: span 4 / span 4; | ||
@media (max-width: 1024px) { | ||
grid-column: span 12 / span 12; | ||
} | ||
`; | ||
const PolicyWrapperHorizontal = styled.div` | ||
display: flex; | ||
gap: 0.5rem; | ||
align-items: center; | ||
@media (max-width: 1024px) { | ||
display: none; | ||
} | ||
`; | ||
|
||
const PolicyWrapperVertical = styled.div` | ||
display: none; | ||
gap: 0.5rem; | ||
align-items: start; | ||
flex-direction: column; | ||
padding: 0 1rem; | ||
@media (max-width: 1024px) { | ||
display: flex; | ||
} | ||
`; | ||
|
||
function TunkFooter() { | ||
return ( | ||
<div | ||
style={{ | ||
padding: '1rem', | ||
position: 'relative', | ||
zIndex: 0, | ||
}} | ||
> | ||
<FooterWrapper> | ||
<Logo> | ||
<Anchor href={tunkBaseUrl}> | ||
<Image src="https://d3tyi07qgwwvqk.cloudfront.net/tunk-logo.svg" /> | ||
</Anchor> | ||
</Logo> | ||
<LinksWrapper> | ||
<VerticalList | ||
style={{ | ||
gap: '1.5rem', | ||
}} | ||
> | ||
<Anchor> | ||
<ListItem>Home</ListItem> | ||
</Anchor> | ||
<Anchor> | ||
<ListItem>About Us</ListItem> | ||
</Anchor> | ||
<Anchor> | ||
<ListItem>Pricing</ListItem> | ||
</Anchor> | ||
<Anchor> | ||
<ListItem>Blog</ListItem> | ||
</Anchor> | ||
<Anchor> | ||
<ListItem>Contact Us</ListItem> | ||
</Anchor> | ||
</VerticalList> | ||
</LinksWrapper> | ||
<LinksWrapper> | ||
<VerticalList | ||
style={{ | ||
gap: '.5rem', | ||
}} | ||
> | ||
<Anchor> | ||
<ListItem>Products</ListItem> | ||
</Anchor> | ||
<Anchor> | ||
<ListSubItem>AI Transcription</ListSubItem> | ||
</Anchor> | ||
<Anchor> | ||
<ListSubItem>Human Transcription</ListSubItem> | ||
</Anchor> | ||
<Anchor> | ||
<ListSubItem>Anya</ListSubItem> | ||
</Anchor> | ||
<Anchor> | ||
<ListSubItem>Earnings Call</ListSubItem> | ||
</Anchor> | ||
</VerticalList> | ||
</LinksWrapper> | ||
<LinksWrapper> | ||
<VerticalList | ||
style={{ | ||
gap: '.5rem', | ||
}} | ||
> | ||
<Anchor> | ||
<ListItem>Use Cases</ListItem> | ||
</Anchor> | ||
<Anchor> | ||
<ListSubItem>Business & Financial Transcription</ListSubItem> | ||
</Anchor> | ||
<Anchor> | ||
<ListSubItem>EduTech</ListSubItem> | ||
</Anchor> | ||
<Anchor> | ||
<ListSubItem>Translation Portal</ListSubItem> | ||
</Anchor> | ||
<Anchor> | ||
<ListSubItem>Investigative Journalism</ListSubItem> | ||
</Anchor> | ||
<Anchor> | ||
<ListSubItem>Medical & Legal Transcription</ListSubItem> | ||
</Anchor> | ||
<Anchor> | ||
<ListSubItem>Archiving Solutions</ListSubItem> | ||
</Anchor> | ||
</VerticalList> | ||
</LinksWrapper> | ||
<AddressAndSocialWrapper> | ||
<ul | ||
style={{ | ||
padding: 0, | ||
listStyle: 'none', | ||
display: 'flex', | ||
flexDirection: 'column', | ||
gap: '5rem', | ||
}} | ||
> | ||
<div> | ||
<ListItem>Follow us on</ListItem> | ||
</div> | ||
<div> | ||
<ListItem | ||
style={{ | ||
marginBottom: '0.5rem', | ||
}} | ||
> | ||
Contact Us | ||
</ListItem> | ||
<Anchor | ||
href="mailto:[email protected]" | ||
style={{ | ||
display: 'flex', | ||
alignItems: 'center', | ||
gap: '0.5rem', | ||
marginBottom: '1rem', | ||
}} | ||
> | ||
<MdOutlineMailOutline size={16} /> | ||
<ListSubItem>[email protected]</ListSubItem> | ||
</Anchor> | ||
<div | ||
style={{ | ||
display: 'flex', | ||
alignItems: 'start', | ||
gap: '0.5rem', | ||
}} | ||
> | ||
<IoLocationOutline size={16} /> | ||
<ListSubItem> | ||
LogicNimbus Private Limited Plot 50, | ||
<br /> | ||
Bajarang Society, Behind Rajsarathi Soc. | ||
<br /> | ||
Vadala Pathardi Road, Indira Nagar Nashik, | ||
<br /> | ||
Maharashtra 422009 | ||
<br /> | ||
India | ||
</ListSubItem> | ||
</div> | ||
</div> | ||
</ul> | ||
</AddressAndSocialWrapper> | ||
</FooterWrapper> | ||
<Divider | ||
style={{ | ||
background: '#0f3057', | ||
}} | ||
/> | ||
<div | ||
style={{ | ||
width: '100%', | ||
display: 'flex', | ||
justifyContent: 'center', | ||
}} | ||
> | ||
<PolicyWrapperHorizontal> | ||
<Anchor> | ||
<ListSubItem>Terms & Conditions</ListSubItem> | ||
</Anchor> | ||
<div | ||
style={{ | ||
height: 6, | ||
width: 6, | ||
borderRadius: '9999px', | ||
background: '#DAE5F2', | ||
}} | ||
/> | ||
<ListSubItem> | ||
© {new Date().getFullYear()} LogicNimbus Pvt Limited. All Rights reserved. | ||
</ListSubItem> | ||
<div | ||
style={{ | ||
height: 6, | ||
width: 6, | ||
borderRadius: '9999px', | ||
background: '#DAE5F2', | ||
}} | ||
/> | ||
<Anchor> | ||
<ListSubItem>Privacy Policy</ListSubItem> | ||
</Anchor> | ||
<div | ||
style={{ | ||
height: 6, | ||
width: 6, | ||
borderRadius: '9999px', | ||
background: '#DAE5F2', | ||
}} | ||
/> | ||
<Anchor>Refund Policy</Anchor> | ||
</PolicyWrapperHorizontal> | ||
<PolicyWrapperVertical className="flex flex-col md:hidden w-full px-4 gap-2"> | ||
<Anchor> | ||
<ListSubItem>Terms & Conditions</ListSubItem> | ||
</Anchor> | ||
<Anchor> | ||
<ListSubItem>Privacy Policy</ListSubItem> | ||
</Anchor> | ||
<Anchor> | ||
<ListSubItem>Refund Policy</ListSubItem> | ||
</Anchor> | ||
<ListSubItem> | ||
© {new Date().getFullYear()} LogicNimbus Pvt Limited. All Rights reserved. | ||
</ListSubItem> | ||
</PolicyWrapperVertical> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default TunkFooter; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters