TourIAm/TIAMSharedUI/Pages/Tours_public.razor

50 lines
1.9 KiB
Plaintext

@page "/signature-ride-packages"
@inject TourService TourService
@using TIAMSharedUI.Shared
@using TIAMSharedUI.Shared.Components
@using TIAMWebApp.Shared.Application.Models
@using TIAMWebApp.Shared.Application.Models.ClientSide.UI
@using TIAMWebApp.Shared.Application.Services
@using Microsoft.AspNetCore.Components.Web
<HeroSlider SliderItems="@sliders" PBottom="50px" Height="30vh"></HeroSlider>
<ToursComponent />
@* <FeaturedItems ItemType="0" /> *@
@code {
public List<HeroSliderItem> sliders = new()
{
new HeroSliderItem
{
Title = "Experience Hungary on Your Terms",
Subtitle = "Discover the freedom of personalized travel with expert private transfers and curated inspiration.",
ImageUrl = "https://images.unsplash.com/photo-1551867633-194f125bddfa?auto=format&fit=crop&q=80&w=2070&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
ButtonText = "Explore Our Programs",
ButtonUrl= "/signature-ride-packages"
},
new HeroSliderItem
{
Title = "Experience Hungary on Your Terms",
Subtitle = "Discover the freedom of personalized travel with expert private transfers and curated inspiration.",
ImageUrl = "https://images.unsplash.com/photo-1549877452-9c387954fbc2?auto=format&fit=crop&q=80&w=2070&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
ButtonText = "Book now",
ButtonUrl= "/transfer"
},
new HeroSliderItem
{
Title = "Experience Hungary on Your Terms",
Subtitle = "",
ImageUrl = "https://images.unsplash.com/photo-1507622560124-621e26755fb8?auto=format&fit=crop&q=80&w=2070&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
ButtonText = "",
ButtonUrl= ""
}
};
}