Hi, I amMichał Szwed
Software Developer
I specialize in creating modern web applications with a focus on performance, accessibility, and user experience.
import { ref, onMounted } from 'vue'
const projects = ref([])
const isLoading = ref(true)
onMounted(async () => {
try {
const data = await fetchProjects()
projects.value = data
} catch (error) {
console.error(error)
} finally {
isLoading.value = false
}
})
function fetchProjects() {
return new Promise((resolve) => {
setTimeout(() => {
resolve([
{ id: 1, title: 'E-commerce Platform' },
{ id: 2, title: 'Portfolio Website' },
{ id: 3, title: 'Mobile App' }
])
}, 1000)
})
}

Vue.js
Go
JavaScript
Redis
0+
Technologies
0+
Projects completed
0+
Coding hours
0%
Delivery speed
Let's Work Together
Have an idea for a project? I'd love to hear about it. Let's talk about how we can collaborate to bring your ideas to life.
Get in touch