@page "/explore-the-region" @using TIAMSharedUI.Pages.Components @using TIAMSharedUI.Shared @using TIAMWebApp.Shared.Application.Models @using TIAMWebApp.Shared.Application.Models.ClientSide.UI @using TIAMWebApp.Shared.Application.Services @inject BlogService BlogService

Blog Posts

Discover the hidden gems and breathtaking landscapes of Hungary! Our blog features inspiring destinations, scenic routes, and must-see spots that invite you to explore the natural beauty of this enchanting country. Whether you're planning your next adventure or simply dreaming of a getaway, let these stories guide your journey.

@if (posts == null) {

Loading blog posts...

} else if (posts.Count == 0) {

No blog posts found.

} else { @*
*@
@foreach (var post in posts) {
@if (!string.IsNullOrEmpty(post.CoverImage)) { @post.Title }
@post.Title
@if (!string.IsNullOrEmpty(post.Lead)) {

@post.Lead

} @if (post.Tags?.Count > 0) {

@string.Join(", ", post.Tags)

} Read More
@*

@post.Title

@post.Tags

@post.Lead

@post.Id

by
*@ } @*
*@
} @code { private List? posts; protected override async Task OnInitializedAsync() { posts = await BlogService.GetAllPostsAsync(); } public List 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= "" } }; }