website/root-vue/src/App.vue

55 lines
934 B
Vue
Executable File

<script setup lang="ts">
import HelloWorld from './components/HelloWorld.vue'
import TopBar from './components/TopBar.vue';
import Video from './components/Video.vue'
// function alert() {
// console.log("lol hi")
// }
</script>
<template>
<!-- <TopBar /> -->
<header>
<img alt="my pfp, made with @greyfeu's picrew" class="logo" src="./assets/pfp.png" width="150" height="150" />
<div class="wrapper">
<HelloWorld msg="SadlyNotSappho" />
</div>
</header>
<main>
<Video />
</main>
</template>
<style scoped>
header {
line-height: 1.5;
}
.logo {
display: block;
margin: 0 auto 2rem;
clip-path: circle();
}
@media (min-width: 1024px) {
header {
display: flex;
place-items: center;
padding-right: calc(var(--section-gap) / 2);
}
.logo {
margin: 0 2rem 0 0;
}
header .wrapper {
display: flex;
place-items: flex-start;
flex-wrap: wrap;
}
}
</style>