1
+ import React from 'react'
2
+ import ClutchIcon from '../../assets/TopDevelopers_badge.svg'
3
+ import LyviaLogo from '../../assets/a_part_of_lyvia_white_1.svg'
4
+ import ForbesDiamondBadge from '../../assets/forbes_badge.svg'
5
+ import styled from 'styled-components'
6
+ import variables from '../../styles/variables'
7
+ import { FlexWrapper } from '../shared'
8
+ import { CustomSection } from '../shared/index.styled'
9
+
10
+
11
+ const Image100 = styled . figure `
12
+ width: 120px;
13
+ height: auto;
14
+ overflow: hidden;
15
+
16
+ svg {
17
+ width: 100%;
18
+ height: auto;
19
+ }
20
+
21
+ @media ${ variables . device . laptop } {
22
+ width: 80px;
23
+ height: auto;
24
+
25
+ }
26
+ @media ${ variables . device . tablet } {
27
+ width: 60px;
28
+ height: auto;
29
+
30
+ }
31
+ `
32
+ const IconLink = styled . a `
33
+ font-size: 0;
34
+ height: 100%;
35
+ `
36
+
37
+ const LyviaIconAndBadges = ( ) => {
38
+ return (
39
+ < CustomSection paddingProps = '35px 0 0 12px ' paddingLaptop = '35px 0 0 12px' paddingTabletXL = '35px 0 0 12px'
40
+ paddingTablet = '30px 0 0 12px' paddingMobileProps = '30px 0 0 12px' >
41
+ < FlexWrapper desktopGap = '30px' desktopDirection = 'column' >
42
+ < IconLink href = 'https://www.lyviagroup.com'
43
+ target = '_blank'
44
+ rel = 'noopener noreferrer nofollow' >
45
+ We are a part of Lyvia Group
46
+ < Image100 > < LyviaLogo /> </ Image100 >
47
+ </ IconLink >
48
+ < FlexWrapper desktopGap = '30px' >
49
+ < IconLink
50
+ href = 'https://clutch.co/profile/bright-inventions#highlights'
51
+ target = '_blank'
52
+ rel = 'noopener noreferrer nofollow'
53
+ >
54
+ Clutch < Image100 > < ClutchIcon /> </ Image100 >
55
+ </ IconLink >
56
+ < IconLink
57
+ href = '/blog/bright-inventions-recognized-in-forbes-diamonds-2024/'
58
+ rel = 'noopener noreferrer nofollow'
59
+ >
60
+ Forbes Diamond < Image100 > < ForbesDiamondBadge /> </ Image100 >
61
+ </ IconLink >
62
+ </ FlexWrapper >
63
+ </ FlexWrapper >
64
+ </ CustomSection >
65
+ )
66
+ }
67
+
68
+ export default LyviaIconAndBadges
0 commit comments