Skip to content

Commit 345a24e

Browse files
committed
add version
1 parent 2ef1833 commit 345a24e

1 file changed

Lines changed: 29 additions & 9 deletions

File tree

src/components/templates/footer/Footer.tsx

Lines changed: 29 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,28 +8,48 @@ interface IProps {}
88
export const Footer: React.FC<IProps> = () => {
99
const footerStyle: CSSProperties = {
1010
display: 'flex',
11-
gap: '1rem',
11+
alignItems: 'center',
12+
justifyContent: 'space-between',
1213
height: '4rem',
1314
padding: '1rem',
1415
};
1516

16-
const linkStyle: CSSProperties = {
17+
const logoGroupStyle: CSSProperties = {
1718
display: 'flex',
19+
gap: '1rem',
20+
alignItems: 'center',
1821
};
1922

2023
const imgStyle: CSSProperties = {
2124
height: '30px',
2225
};
2326

27+
const centerTextStyle: CSSProperties = {
28+
fontSize: '14px',
29+
paddingTop: '5px',
30+
textAlign: 'center',
31+
flex: 1,
32+
};
33+
34+
const versionStyle: CSSProperties = {
35+
fontSize: '12px',
36+
color: '#666',
37+
};
38+
39+
const versionLabel = 'ver: 15/07/2026';
40+
2441
return (
2542
<footer style={footerStyle}>
26-
<a href="https://www.natoon.co.il/" title="מבית נתון לשינוי" style={linkStyle}>
27-
<img src={logoNatun} alt="Natun logo" style={imgStyle} />
28-
</a>
29-
<a href="https://www.anyway.co.il/" title="anyway.co.il" style={linkStyle}>
30-
<img src={logoAnyway} alt="Anyway logo" style={imgStyle} />
31-
</a>
32-
<span style={{fontSize:'14px', paddingTop: '5px'}}>פותח בשיתוף המטה לבטיחות בדרכים בעיריית תל אביב-יפו</span>
43+
<div style={logoGroupStyle}>
44+
<a href="https://www.natoon.co.il/" title="מבית נתון לשינוי">
45+
<img src={logoNatun} alt="Natun logo" style={imgStyle} />
46+
</a>
47+
<a href="https://www.anyway.co.il/" title="anyway.co.il">
48+
<img src={logoAnyway} alt="Anyway logo" style={imgStyle} />
49+
</a>
50+
</div>
51+
<span style={centerTextStyle}>פותח בשיתוף המטה לבטיחות בדרכים בעיריית תל אביב-יפו</span>
52+
<span style={versionStyle}>{versionLabel}</span>
3353
</footer>
3454
);
3555
};

0 commit comments

Comments
 (0)