first commit
This commit is contained in:
commit
0065c017e4
496 changed files with 54265 additions and 0 deletions
33
frontend/src/components/preise/Price.astro
Normal file
33
frontend/src/components/preise/Price.astro
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
---
|
||||
import CarsSlider from '@components/home/slider/CarsSlider';
|
||||
import type { PriceProps } from '@/types/globalInterfaces';
|
||||
|
||||
const { cars = [], title = "Verfügbare Fahrzeuge", subtitle = "Wählen Sie die perfekte Option für Ihren Transfer" } = Astro.props as PriceProps;
|
||||
---
|
||||
|
||||
<div>
|
||||
<div class="opacity-0 animate-fadeInUp delay-500">
|
||||
<CarsSlider cars={cars} client:visible />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
@keyframes fadeInUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(20px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.animate-fadeInUp {
|
||||
animation: fadeInUp 0.8s ease-out forwards;
|
||||
}
|
||||
|
||||
.delay-500 {
|
||||
animation-delay: 0.5s;
|
||||
}
|
||||
</style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue