Initial commit
This commit is contained in:
106
frontend/src/pages/404.html
Normal file
106
frontend/src/pages/404.html
Normal file
@@ -0,0 +1,106 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
{{> head}}
|
||||
<body>
|
||||
<div id="app">
|
||||
{{> header-banner}} {{> header}}
|
||||
<main class="main">
|
||||
{{> breadcrumbs title="404"}}
|
||||
<div class="error-page">
|
||||
<div class="container">
|
||||
<div class="error-page__inner">
|
||||
<p class="error-page__title">Страница 404</p>
|
||||
<p class="error-page__subtitle">
|
||||
Данной страницы не существует, перейдите на главную страницу
|
||||
сайта
|
||||
</p>
|
||||
<a href="#" class="button error-page__btn">На главную</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<footer class="footer">
|
||||
<div class="footer-top">
|
||||
<div class="container footer__conatiner">
|
||||
<div class="footer-top__inner">
|
||||
<a href="#" class="logo footer__logo">
|
||||
<img src="/images/logo.svg" alt="Агроэксперт" />
|
||||
</a>
|
||||
<nav class="nav footer__nav">
|
||||
<li class="menu-item">
|
||||
<a href="#">Интервью</a>
|
||||
</li>
|
||||
<li class="menu-item">
|
||||
<a href="#">Партнеры</a>
|
||||
</li>
|
||||
<li class="menu-item">
|
||||
<a href="#">Рекламодатели</a>
|
||||
</li>
|
||||
<li class="menu-item">
|
||||
<a href="#">О проекте</a>
|
||||
</li>
|
||||
<li class="menu-item">
|
||||
<a href="#">Контакты</a>
|
||||
</li>
|
||||
</nav>
|
||||
<div class="footer-top__right">
|
||||
<a href="#" class="to-top">
|
||||
<span>Наверх</span>
|
||||
<svg
|
||||
width="9"
|
||||
height="6"
|
||||
viewBox="0 0 9 6"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<rect
|
||||
x="3.69409"
|
||||
y="1.05029"
|
||||
width="1"
|
||||
height="5.22423"
|
||||
transform="rotate(45 3.69409 1.05029)"
|
||||
fill="black"
|
||||
/>
|
||||
<rect
|
||||
width="1"
|
||||
height="6"
|
||||
transform="matrix(-0.707107 0.707107 0.707107 0.707107 4.1333 0.525146)"
|
||||
fill="black"
|
||||
/>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
<div class="container">
|
||||
<div class="footer-bottom__inner">
|
||||
<div class="footer-bottom__text desktop">© 2024 АгроЭксперт</div>
|
||||
<a href="#" class="footer-bottom__text footer-bottom__link">
|
||||
Политика конфиденциальности
|
||||
</a>
|
||||
<a href="#" class="footer-bottom__text footer-bottom__link">
|
||||
Свидетельство о регистрации электронного СМИ
|
||||
</a>
|
||||
<div class="socials footer__socials">
|
||||
<a href="#" class="social-link">
|
||||
<img src="/images/socials_yt.svg" alt="" />
|
||||
</a>
|
||||
<a href="#" class="social-link">
|
||||
<img src="/images/socials_vk.svg" alt="" />
|
||||
</a>
|
||||
<a href="#" class="social-link">
|
||||
<img src="/images/socials_tg.svg" alt="" />
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="footer-bottom__text mobile">© 2024 АгроЭксперт</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
<script type="module" src="/src/main.ts"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user