20 lines
375 B
Vue
20 lines
375 B
Vue
<script setup lang="ts">
|
|
import { RouterView } from 'vue-router'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="interview-layout min-h-screen bg-gradient-to-br from-blue-50 to-indigo-100">
|
|
<RouterView />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.interview-layout {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 20px;
|
|
}
|
|
</style>
|