18 lines
236 B
Vue
18 lines
236 B
Vue
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="container">
|
|
<h2>Collect Knowledge</h2>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.container{
|
|
background-color: #ffffff;
|
|
border-radius: 16px;
|
|
padding: 34px;
|
|
}
|
|
|
|
</style> |