forked from CodeForPoznan/alinka-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (99 loc) · 4.62 KB
/
index.html
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
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/style.css" />
<link href="https://fonts.googleapis.com/css?family=Atma&subset=latin,latin-ext" rel="stylesheet" type="text/css" />
<link
href="https://fonts.googleapis.com/css?family=Dancing+Script|Montserrat:400,500,700|Oswald:200|Playfair+Display|Roboto|Roboto+Condensed&display=swap&subset=latin-ext"
rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src=".config/config.js"></script>
<script src=".config/local_config.js"></script>
<script src="assets/js/send_form_to_google.js"></script>
<title>Alinka - Łatwiejsze wydawanie orzeczeń</title>
</head>
<body>
<header class="header">
<nav class="nav header__nav">
<ul class="nav__list">
<li class="nav__item">
<a href="https://codeforpoznan.pl/" class="nav__logo">Logo</a>
</li>
<li class="nav__item">
<a href="https://codeforpoznan.pl/" class="nav__link">O nas</a>
</li>
<li class="nav__item">
<a href="#" class="nav__link">Pomóż Alince</a>
</li>
</ul>
</nav>
</header>
<section class="alinka-section intro">
<h1 class="intro__title">Alinka</h1>
<h2 class="intro__description">tekst opisujący/zachęcający</h2>
<button class="button button--regular">Pobierz</button>
<img src="assets/images/intro-graphics.svg" class="intro__graphics">
</section>
<section class="alinka-section description">
<img src="assets/images/description-bg.svg" alt="" class="description__background">
<h3 class="titles description__title">Automatyczne generowanie dokumentów</h3>
<p class="description__text">Alinka jest aplikacją desktopową, która ma pomagać osobom z polskich Poradni
Psychologiczno-Pedagogicznym
odpowiedzialnym za wydawanie orzeczeń.</p>
<p class="description__text">Idea powstała, dzięki Pani Alince wykonującą tę pracę. Wiąże się ona ze żmudnym
wypełnianiem tych samym
danych w wielu dokumentach, a tym samym prowadzi do godzin niepotrzebnej pracy. Chcąc wesprzeć cały
proces stworzyliśmy narzędzie, które zautomatyzuje generowanie dokumentów zgodnych z oficjalnymi
standardami Ministerstwa Edukacji Narodowej. Tym samym wzrośnie efektywność oraz zmaleje ilość błędów w
porównaniu z ręcznym wprowadzaniem danych.</p>
<p class="description__text">Generowany dokument zostanie utworzony jako plik .docs, możliwy do edycji w Wordzie
i ewentualnego
dopisania dodatkowych informacji.</p>
<img src="assets/images/description-graphics.svg" alt="" class="description__graphics">
</section>
<section class="alinka-section features">
<div class="features__list">
<div class="feature features__item">
<img src="assets/images/feature-free.svg" alt="" class="feature__icon">
<p class="feature__text">Darmowa</p>
</div>
<div class="feature features__item">
<img src="assets/images/feature-easy.svg" alt="" class="feature__icon">
<p class="feature__text">Łatwa w osłudze</p>
</div>
<div class="feature features__item">
<img src="assets/images/feature-safe.svg" alt="" class="feature__icon">
<p class="feature__text">Bezpieczna</p>
</div>
</div>
</div>
</section>
<section class="alinka-section download">
<h3 class="titles download__title">Zacznij pracować z Alinką!</h3>
<div class="download__buttons">
<button class="button button--vivid">Pobierz</button>
</div>
<img src="assets/images/download-graphics.svg" alt="" class="download__graphics">
</section>
<footer class="footer">
<img src="assets/images/Code_for_Poznan_final-01.png" alt="Code for Poznan logo" class="footer__logo" />
<div class="icons footer__contact">
<p class="icons__email">[email protected]</p>
<div class="social-media icons__social-media">
<a href="https://www.facebook.com/CodeForPL/" class="social-media__item">
<img src="assets/images/facebook.svg" alt="Facebook" />
</a>
<a href="https://pl.linkedin.com/company/codeforpoznan" class="social-media__item">
<img src="assets/images/linked-in.svg" alt="linked-in" />
</a>
<a href="https://github.com/CodeForPoznan" class="social-media__item">
<img src="assets/images/github.svg" alt="Github-link" />
</a>
</div>
</div>
</footer>
</body>
</html>