Skip to content

Commit

Permalink
Add SuperHosting partner in Footer (#1103)
Browse files Browse the repository at this point in the history
  • Loading branch information
ani-kalpachka authored and dimitur2204 committed Nov 21, 2022
1 parent 55bd850 commit 2d1f16d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
3 changes: 2 additions & 1 deletion public/locales/bg/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@
"faq": "Често задавани въпроси",
"privacy-policy": "Защита на лични данни",
"terms-of-service": "Общи условия",
"copyrights": "Podkrepi.bg ©2022 Всички права запазени."
"copyrights": "Podkrepi.bg ©2022 Всички права запазени.",
"hosting-partner": "Хостинг партньор:"
}
},
"or": "или",
Expand Down
3 changes: 2 additions & 1 deletion public/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@
"faq": "Frequently asked questions",
"privacy-policy": "Privacy Policy",
"terms-of-service": "Terms of Service",
"copyrights": "Podkrepi.bg ©2022 All rights reserved."
"copyrights": "Podkrepi.bg ©2022 All rights reserved.",
"hosting-partner": "Hosting partner:"
}
},
"or": "or",
Expand Down
10 changes: 10 additions & 0 deletions src/components/layout/Footer/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import { useTranslation } from 'next-i18next'

import { Grid } from '@mui/material'

import { LogoSocialIcons } from './LogoSocialIcons'
import { FooterLinks } from './FooterLinks'
import { staticUrls } from 'common/routes'
import ExternalLink from 'components/common/ExternalLink'

import { Copyright, FooterWrapper, Root } from './Footer.styled'

Expand All @@ -16,6 +20,12 @@ export default function Footer() {
<Copyright item xs={12}>
{t('components.footer.copyrights')}
</Copyright>
<Grid item>
{t('components.footer.hosting-partner')}{' '}
<ExternalLink href={staticUrls.hostingProvider}>
<strong>SuperHosting.BG</strong>
</ExternalLink>
</Grid>
</FooterWrapper>
</Root>
)
Expand Down

0 comments on commit 2d1f16d

Please sign in to comment.