Files
testvue/src/App.vue
Carmine Savino 2eddd152d7
Some checks failed
Build and Deploy / deploy (push) Has been cancelled
Build and Deploy / build (push) Has been cancelled
first commit
2026-01-23 09:59:19 +01:00

70 lines
1.1 KiB
Vue

<template>
<div class="welcome-container">
<div class="welcome-card">
<h1>👋 Benvenuto!</h1>
<p>Questa è una demo di Vue.js</p>
<div class="info">
<p>Stai utilizzando Vue 3 con Vite</p>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'App'
}
</script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.welcome-container {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.welcome-card {
background: white;
padding: 3rem;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
text-align: center;
max-width: 500px;
}
h1 {
font-size: 3rem;
color: #333;
margin-bottom: 1rem;
}
p {
font-size: 1.2rem;
color: #666;
margin-bottom: 1rem;
}
.info {
margin-top: 2rem;
padding-top: 2rem;
border-top: 2px solid #f0f0f0;
}
.info p {
font-size: 1rem;
color: #999;
}
</style>