Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

SmallFooter.tsx 1.9 KB

You have to be logged in to leave a comment. Sign In
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
  1. import { MarkGithubIcon } from '@primer/octicons-react'
  2. import { useTranslation } from 'components/hooks/useTranslation'
  3. export const SmallFooter = () => {
  4. const { t } = useTranslation('footer')
  5. return (
  6. <footer className="py-6 text-small">
  7. <div className="container-xl d-flex px-3 px-md-6">
  8. <ul className="d-flex list-style-none flex-wrap flex-justify-center flex-xl-justify-start">
  9. <li className="d-flex mr-xl-3 color-text-secondary">
  10. <MarkGithubIcon className="mr-2 mr-xl-3" size={20} />
  11. <span>&copy; {new Date().getFullYear()} GitHub, Inc.</span>
  12. </li>
  13. <li className="ml-3">
  14. <a href="/github/site-policy/github-terms-of-service">{t`terms`}</a>
  15. </li>
  16. <li className="ml-3">
  17. <a href="/github/site-policy/github-privacy-statement">{t`privacy`} </a>
  18. </li>
  19. <li className="ml-3">
  20. <a href="https://github.com/security">{t`product.links.security`}</a>
  21. </li>
  22. <li className="ml-3">
  23. <a href="https://www.githubstatus.com/">{t`support.links.status`}</a>
  24. </li>
  25. <li className="ml-3">
  26. <a href="/">{t`support.links.help`}</a>
  27. </li>
  28. <li className="ml-3">
  29. <a href="https://support.github.com">{t`support.links.contact_github`}</a>
  30. </li>
  31. <li className="ml-3">
  32. <a href="https://github.com/pricing">{t`product.links.pricing`}</a>
  33. </li>
  34. <li className="ml-3">
  35. <a href="/developers">{t`platform.links.developer_api`}</a>
  36. </li>
  37. <li className="ml-3">
  38. <a href="https://services.github.com/">{t`support.links.training`}</a>
  39. </li>
  40. <li className="ml-3">
  41. <a href="https://github.com/about">{t`company.links.about`}</a>
  42. </li>
  43. </ul>
  44. </div>
  45. </footer>
  46. )
  47. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...