-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (93 loc) · 3.59 KB
/
Copy pathindex.html
File metadata and controls
97 lines (93 loc) · 3.59 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hire me!</title>
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="app">
<footer class="footer">
<div class="footer__content">
<div class="footer__main">
<div class="footer__hero">
<img width="270" alt="logo" src="./public/logo.svg" />
<h3>
Повышай прибыльность бизнеса <br />
через эффективную работу <br />
с данными.
</h3>
</div>
<div class="footer__contacts">
<a href="tel:+74953207777" class="footer__phone"
>+7 495 320-77-77</a
>
<address class="footer__address">
195257, г. Санкт-Петербург, <br />
Гражданский пр., д. 100с1,<br />
пом. 5
<a href="mailto:info@mpstats.io" class="footer__email"
>info@mpstats.io</a
>
</address>
<span class="footer__socials">
<a href="https://www.youtube.com/c/mpstats" target="_blank"
><img alt="youtube" width="28" src="./public/yt.svg"
/></a>
<a href="https://telegram.me/analyticsmpstats" target="_blank"
><img alt="tg" width="28" src="./public/tg.svg"
/></a>
<a href="https://vk.com/mpstatsio" target="_blank"
><img alt="vk" width="28" src="./public/vk.svg"
/></a>
<a
href="https://dzen.ru/mpstats?utm_referer=www.google.com"
target="_blank"
><img alt="dzen" width="28" src="./public/dzen.svg"
/></a>
</span>
</div>
<div class="footer__legal">
<p class="footer__legal-header">ООО «МПСТАТС ПРОДВИЖЕНИЕ»</p>
<dl class="legal-item">
<dt>ИНН</dt>
<dd>7804713205</dd>
</dl>
<dl class="legal-item">
<dt>КПП</dt>
<dd>780401001</dd>
</dl>
<dl class="legal-item">
<dt>ОГРН</dt>
<dd>1257800005781</dd>
</dl>
</div>
</div>
<div class="footer__down">
<nav class="footer__nav">
<div class="footer__links">
<a href="#">Основной сайт</a>
<a
href="https://mpstats.io/?utm_source=mpstats_events&utm_medium=links_for_service_in_footer&utm_campaign=landing_mpstats_conf"
class="footer__mpstats"
>mpstats<img width="12" src="./public/arrow.svg"
/></a>
<a href="#">Политика конфиденциальности</a>
</div>
</nav>
<div class="footer__copyright">
<span> C ❤️ из Санкт-Петербурга </span>
<span>© 2025 ООО «МПСТАТС ПРОДВИЖЕНИЕ»</span>
</div>
</div>
</div>
</footer>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>