web: added seperation

This commit is contained in:
Mika Bomm 2024-07-05 14:37:10 +02:00
parent 6ffdf23797
commit e6bed3dc65
2 changed files with 15 additions and 0 deletions

View file

@ -11,3 +11,7 @@ import StartPage from './components/StartPage.vue';
// //
</script> </script>
<style scoped>
</style>

View file

@ -1,4 +1,15 @@
<template> <template>
<div style="display: flex;">
<div style="flex: 30%">
<h1>Start Page</h1>
<p>Welcome to the start page</p>
</div>
<div style="flex: 70%;">
<h1>Start Page</h1>
<p>Welcome to the start page</p>
</div>
</div>
</template> </template>