Hi there!
This is your first markdown page. It probably isnβt styled much, although Markdown does support bold and italics. To learn more about adding a layout to your page, read the next section on Markdown Layouts.
import MtButton from '../components/MtButton.vue';
import { ref } from 'vue';
import Logo from '../images/logo_white.png';
const mobileNavOpen = ref(true);
const toggleMobileNav = () => {
mobileNavOpen.value = !mobileNavOpen.value;
};