Files
DredgeTours/resources/js/components/home/FeaturedTours.vue
2025-09-17 23:34:37 +10:00

120 lines
2.7 KiB
Vue

<template>
<section class="featured-tours">
<div class="tour-decorations">
<div class="tour-decoration tour-decoration-1"></div>
<div class="tour-decoration tour-decoration-2"></div>
</div>
<SectionContainer>
<div
v-show-on-intersect="{ type: 'fade-up', duration: '1s' }"
class="tours-header"
>
<SectionTitle title="Featured" gradient="Adventures" subtitle="Discover somewhere new, in a new way" />
</div>
<div class="tours-grid">
<TourCard
v-for="(tour, index) in featuredTours"
:key="index"
class="tour-card"
:data-index="index"
:tour="tour"
/>
</div>
<br/>
<EdgyButton
v-show-on-intersect="{ type: 'fade-up', duration: '0.6s' }"
classes="btn-primary btn-full"
>
Explore All Adventures
</EdgyButton>
</SectionContainer>
</section>
</template>
<style scoped>
/* Featured Tours Section */
.featured-tours {
position: relative;
padding: 5rem 0;
background: var(--background);
overflow: hidden;
}
.tour-decorations {
position: absolute;
inset: 0;
pointer-events: none;
}
.tour-decoration {
position: absolute;
opacity: 0.05;
clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.tour-decoration-1 {
top: 5rem;
left: 0;
width: 128px;
height: 128px;
background: var(--gradient-adventure);
}
.tour-decoration-2 {
bottom: 10rem;
right: 5rem;
width: 96px;
height: 96px;
background: var(--gradient-accent);
opacity: 0.1;
}
.tours-header {
text-align: center;
margin-bottom: 4rem;
}
.tours-grid {
display: grid;
gap: 2rem;
overflow: hidden;
}
@media (min-width: 768px) {
.tours-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 1024px) {
.tours-grid {
grid-template-columns: repeat(3, 1fr);
}
}
/* Hover effects for tour cards */
.tour-card {
transition: transform 0.3s ease;
cursor: pointer;
overflow: hidden;
}
.tour-card:hover {
transform: translateY(-8px) scale(1.02);
}
</style>
<script setup lang="ts">
import SectionContainer from "@/components/dredgy/SectionContainer.vue";
import SectionTitle from "@/components/dredgy/SectionTitle.vue";
import TourCard from "@/components/dredgy/TourCard.vue";
import EdgyButton from "@/components/dredgy/EdgyButton.vue";
import { Tour } from "@/types";
defineProps<{
featuredTours: Tour[]
}>()
</script>