init
All checks were successful
Deploy / build (push) Successful in 44s

This commit is contained in:
alsaze
2025-12-01 17:02:52 +03:00
parent f35f562add
commit eb73c72954
21 changed files with 237 additions and 34 deletions

View File

@@ -27,7 +27,7 @@
<UContainer class="flex flex-col gap-32 mt-32">
<MainServices :services="services" />
<MainCarusel />
<MainCarusel :preview-items="previewItems" />
<Contacts />
</UContainer>
@@ -85,6 +85,41 @@ const services = [
],
},
]
const previewItems = [
{
id: 13242314,
img: 'https://picsum.photos/468/468?random=1',
},
{
id: 123321,
img: 'https://picsum.photos/468/468?random=2',
},
{
id: 7654567,
img: 'https://picsum.photos/468/468?random=3',
},
{
id: 3203030,
img: 'https://picsum.photos/468/468?random=4',
},
{
id: 1818822,
img: 'https://picsum.photos/468/468?random=5',
},
{
id: 12355432,
img: 'https://picsum.photos/468/468?random=6',
},
{
id: 3495823,
img: 'https://picsum.photos/468/468?random=7',
},
{
id: 1123,
img: 'https://picsum.photos/468/468?random=8',
},
]
</script>
<style lang="scss">