diff --git a/src/components/atoms/Container.astro b/src/components/atoms/Container.astro index 3e67c35..bdc064e 100644 --- a/src/components/atoms/Container.astro +++ b/src/components/atoms/Container.astro @@ -1,6 +1,7 @@ --- +const { class: className } = Astro.props; --- -
+
diff --git a/src/components/widgets/Navbar.astro b/src/components/widgets/Navbar.astro index 88844c1..e1c9d49 100644 --- a/src/components/widgets/Navbar.astro +++ b/src/components/widgets/Navbar.astro @@ -1,5 +1,11 @@ --- +import Container from "../atoms/Container.astro"; + const navItems = [ + { + name: "Home", + link: "/", + }, { name: "Projects", link: "/projects", @@ -11,23 +17,24 @@ const navItems = [ ]; --- -
- +
+ + xHyroM + +
diff --git a/src/pages/projects.astro b/src/pages/projects.astro index a373861..c593fd2 100644 --- a/src/pages/projects.astro +++ b/src/pages/projects.astro @@ -13,9 +13,11 @@ import Container from "../components/atoms/Container.astro";
-
+

Projects

-

+

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed tincidunt, nisl eget aliquam tincidunt, nisl elit aliquam tortor, eget aliquam nisl elit non nisl. Sed tincidunt, nisl diff --git a/tailwind.config.cjs b/tailwind.config.cjs index 33908e1..7683b29 100644 --- a/tailwind.config.cjs +++ b/tailwind.config.cjs @@ -5,6 +5,7 @@ module.exports = { extend: { colors: { dark: "#0D0D0D", + gray: "#131313", }, dropShadow: { yellow: ["0 35px 35px rgba(250, 193, 25, 0.5)"],