comfycamp/src/components/Navbar.astro
2023-12-03 19:31:02 +05:00

14 lines
218 B
Plaintext

<nav>
<a href="/">Главная</a>
<a href="/services/">Сервисы</a>
<a href="/cinema/">Кинотеатр</a>
</nav>
<style>
nav {
padding-top: 6px;
display: flex;
gap: 32px;
}
</style>