feat(website): add build script for frontend dependencies

This commit is contained in:
Alexander Navarro 2024-12-23 19:40:58 -03:00
parent 7e8dc4ec5a
commit 698294c74e
10 changed files with 181 additions and 16 deletions

View file

@ -1,22 +1,20 @@
<!DOCTYPE html>
<html lang={i18next.language}>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Astro description" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
<HeadHrefLangs />
<title>{title}</title>
<title>alecodes.page</title>
<ViewTransitions />
<link rel="stylesheet" href="style.css" />
<script src="/js/index.js"></script>
<link rel="stylesheet" href="/css/style.css" />
</head>
<body transition:animate="fade">
<header class="position-sticky py-1 py-lg-3">
<Navbar />
{% include "partials/navbar.html" %}
</header>
<main>
{% block content %}{% endblock %}