Visit, eat, stay Sorell – Iron Creek Bay Estate is surrounded by our fruit orchards, vineyard, and a host of farm animals.
Our award-winning sustainable architecture has quality finishes, indoor and outdoor shared spaces, and sweeping Southern Tasmania rural views.
ORANI Restaurant offers globally-inspired dining right here in Sorell. We use the best farm-grown Tassie produce, accompanied by local Tasmanian wines and spirits.
Iron Creek Bay Estate is located 15 minutes from the Hobart Airport and 30 from the CBD, perfect if you’re looking for accommodation near Hobart that still allows you to escape the city.
Cosy private rooms with either king or twin beds. Ideal for budget travellers or road-trip overnighters. Surrounded by native landscaping with access to guest lounge, gym and laundry facilities.
ORANI Restaurant. Come for the great food and drinks, stay for the view.
Just a short drive from Hobart, ORANI Restaurant Sorell is open for breakfast and lunch every day and dinner on a seasonal basis. Or by prior arrangement for groups and special events.
We serve Chef driven locally sourced, homestyle farmhouse food.
ORANI’s dining room features sweeping views across our cherry orchard to Iron Creek Bay and Mount Wellington in the distance. Ideal for taking in the sunsets with a glass of Tasmanian wine, beer or spirits from our well-stocked bar.
// Change heading based on the number of slides
if (slideCount > 1) {
$('#special').text('SPECIAL OFFERS'); // Change to plural
} else {
$('#special').text('SPECIAL OFFER'); // Ensure singular is set properly
}
});
} else {
// Change heading based on the number of slides
if (slideCount > 1) {
$('#special').text('SPECIAL OFFERS'); // Change to plural
} else {
$('#special').text('SPECIAL OFFER'); // Ensure singular is set properly
}
}
// Hide the navigation element if there is only one slide
if (slideCount === 1) {
$('.slider1 .is-special-offer-arrows').hide();
}
}
}
// Function to handle slider2
function handleSlider2() {
if ($('.slider2').length) {
// Initialize slider2
let splides = $('.slider2');
splides.each(function(i, splide) {
new Splide(splide, {
// Desktop on down
perPage: 5.5,
perMove: 1,
focus: 'center', // 0 = left and 'center' = center
type: 'loop', // 'loop' or 'slide'
gap: '24px', // space between slides
arrows: 'slider', // 'slider' or false
pagination: false, // 'slider' or false
speed: 550, // transition speed in milliseconds
dragAngleThreshold: 80, // default is 30
autoWidth: false, // for cards with differing widths
rewind: false, // go back to beginning when reach end
rewindSpeed: 800,
waitForTransition: false,
updateOnMove: true,
trimSpace: false,
breakpoints: {
991: {
// Tablet
perPage: 2.5,
gap: '24px'
},
767: {
// Mobile Landscape
perPage: 1.5,
gap: '24px'
},
479: {
// Mobile Portrait
perPage: 1.5,
gap: '24px'
}
}
}).mount();
});
}
}
// Call the functions
handleSlider1();
handleSlider2();
});