This commit is contained in:
David Haz
2025-07-10 22:10:54 +03:00
parent 77a588ea56
commit 8866f339c2
17 changed files with 242 additions and 34 deletions

View File

@@ -1,7 +1,12 @@
<template>
<section class="landing-wrapper">
<div v-if="isMobile" class="mobile-hero-background-container">
<!-- Hero image will be added when available -->
<div v-if="isMobile" class="mobile-hero-background-container" style="z-index: 0;">
<img
:src="heroImage"
alt="Hero background"
class="mobile-hero-background-image"
style="transform: translateY(-200px);"
/>
</div>
<PlasmaWave :y-offset="-300" :x-offset="100" :rotation-deg="-30" />
@@ -19,6 +24,7 @@ import PlasmaWave from '@/components/landing/PlasmaWave/PlasmaWave.vue'
import Footer from '@/components/landing/Footer/Footer.vue'
import FeatureCards from '@/components/landing/FeatureCards/FeatureCards.vue'
import StartBuilding from '@/components/landing/StartBuilding/StartBuilding.vue'
import heroImage from '@/assets/common/hero.webp'
const isMobile = ref(false)
const checkIsMobile = () => {