diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 2deba77..600fe63 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -5,6 +5,15 @@ export interface Props { const { title } = Astro.props; import "../assets/style/global.css"; +import Navbar from '../components/Navbar.astro'; + +const navbarLinks = [ + { href: "/", text: "Home" }, + { href: "/blog", text: "Blog" }, + { href: "/portafolio", text: "Portafolio" }, + { href: "/curriculum", text: "Curriculum" }, + { href: "/contact", text: "Contact" }, +] --- @@ -22,8 +31,17 @@ import "../assets/style/global.css";
+