|
|
@ -1,8 +1,14 @@
|
|
|
|
<template>
|
|
|
|
<template>
|
|
|
|
<div id="app">
|
|
|
|
<div id="app">
|
|
|
|
<Header></Header>
|
|
|
|
<div class="center">
|
|
|
|
<router-view></router-view>
|
|
|
|
|
|
|
|
<Footer></Footer>
|
|
|
|
<p>
|
|
|
|
|
|
|
|
Hello! You have reached Ayush Mukherjee's website. It is currently undergoing
|
|
|
|
|
|
|
|
an overhaul. You may contact me at the following email address:
|
|
|
|
|
|
|
|
<a href="mailto:me@ayushm.com">me@ayushm.com</a>, or via discord: Ayush#4148.
|
|
|
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<small>Last updated: 12 Oct 2021</small>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
@ -20,5 +26,23 @@ export default {
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
<style lang="scss">
|
|
|
|
@import 'scss/main';
|
|
|
|
@import 'scss/main.scss';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
|
|
|
height: 100vh;
|
|
|
|
|
|
|
|
width: 100vw;
|
|
|
|
|
|
|
|
max-width: 1200px;
|
|
|
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
|
|
place-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.center {
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
small {
|
|
|
|
|
|
|
|
font-style: italic;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</style>
|
|
|
|