
Bus Ticket Abisko – Kiruna
After the event, there’s an option to travel back to Kiruna by bus, whether you're catching a train or a flight. To make things easier, we’ve gathered the information and booking link for the bus ride.
The trip takes about 70 minutes. We recommend booking your ticket in advance to secure a seat.
import { useEffect } from 'react';
export default function RezdyEmbed() {
useEffect(() => {
const script = document.createElement('script');
script.src = 'https://fjllrvenclassic.rezdy.com/pluginJs';
script.type = 'text/javascript';
script.defer = true;
document.body.appendChild(script);
}, []);
return (
<iframe
title="Rezdy Booking"
className="rezdy"
src="https://fjllrvenclassic.rezdy.com/711876/abisko-kiruna?iframe=true"
width="100%"
height="1000px"
frameBorder="0"
seamless
></iframe>
);
}