Initial commit: AI Interview System

This commit is contained in:
111
2026-01-23 13:57:48 +08:00
commit 95770afe21
127 changed files with 24686 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<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>