comfycamp/src/components/Navbar.astro

13 lines
174 B
Text
Raw Normal View History

2023-08-27 23:20:38 +05:00
<nav>
<a href="/">Главная</a>
2023-10-15 11:14:07 +05:00
<a href="/services/">Сервисы</a>
2023-08-27 23:20:38 +05:00
</nav>
<style>
nav {
padding-top: 6px;
display: flex;
gap: 32px;
}
</style>