From 8fd6f1a2739b686092bbb5806666e63f283d6510 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Mon, 22 Jan 2024 19:56:50 -0500 Subject: Add Vue.JS for Navbar; Transitions; Getting started on projects --- src/layouts/Default.astro | 22 +++++++++++++++------- src/layouts/Page.astro | 22 +++++++++++++++++++--- 2 files changed, 34 insertions(+), 10 deletions(-) (limited to 'src/layouts') diff --git a/src/layouts/Default.astro b/src/layouts/Default.astro index ecc4e2e..29662c6 100644 --- a/src/layouts/Default.astro +++ b/src/layouts/Default.astro @@ -1,18 +1,19 @@ --- interface Props { title: string; - description: string; + description: string; } const { title, description } = Astro.props; -import { ViewTransitions } from 'astro:transitions'; -import Navbar from '../components/Navbar.astro'; +import { ViewTransitions, slide } from 'astro:transitions'; +import Navbar from '../components/Navbar.vue'; --- + @@ -24,11 +25,13 @@ import Navbar from '../components/Navbar.astro'; {title} - + +
-
-

Copyright © 2024 Andrew Lee

-
+
+

Copyright © 2024 Andrew Lee

+
+
-- cgit v1.2.3