RSE/frontend/pages/index.vue
2024-12-24 11:10:38 +01:00

13 lines
438 B
Vue

<script setup lang="ts">
const route = useRoute()
</script>
<template>
<div class="h-screen flex items-center justify-center">
<div class="flex space-x-2">
<input placeholder=".NET C#" class="text-center bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg p-2.5 w-192"/>
<button class="text-gray-900 bg-gray-50 border border-gray-300 px-4 py-2 rounded-lg">Search</button>
</div>
</div>
</template>