Heritage Renovations

Transform Your Space with Heritage Renovations

Welcome to Heritage Renovations, where your vision for a perfect home becomes a reality. Specialising in top-tier renovations and bespoke new builds, we bring timeless craftsmanship and modern precision to every project.

Book a Measure & Quote

Solutions

Custom Solutions for Any Renovation

Tailored Cabinetry

Imagine cabinets that fit every corner of your space, crafted to perfection. Our custom cabinetry is designed not just to fit your area, but to enhance it.

Elegant Benchtops

Elevate your kitchen or bathroom with a custom benchtop that blends style with durability. Choose from a range of premium materials and finishes to suit your taste and lifestyle.

Full-Scale Renovations

From dream kitchens to luxurious bathrooms and functional laundries, we handle it all. Our expert team ensures every detail reflects your personal style, while boosting your home’s value.

Transformative Renovations

Transformative Renovations for Every Single Room

Whether you’re looking to revamp your kitchen, bathroom, or laundry room, our comprehensive renovation services cover all bases. We handle everything from the initial design to the final touches, ensuring each renovated space not only meets your expectations but exceeds them.

Our skilled team pays close attention to your preferences and the unique aspects of your space, delivering a finished product that is both functional and visually stunning.

Transformative Renovations

Transformative Renovations for Every Single Room

Whether you’re looking to revamp your kitchen, bathroom, or laundry room, our comprehensive renovation services cover all bases. We handle everything from the initial design to the final touches, ensuring each renovated space not only meets your expectations but exceeds them.

Our skilled team pays close attention to your preferences and the unique aspects of your space, delivering a finished product that is both functional and visually stunning.

Specialised & Experienced

Specialised Renovations

Process

We Manage The Project From Top To Bottom

Initial Consultation

Your journey begins with a personal consultation where we discuss your vision, preferences, and specific needs. During this phase, we explore your goals for the space, your style preferences, and any particular challenges your project might present. This helps us ensure that our plans align perfectly with your expectations.

Design and Planning

Armed with insights from our initial discussions, our design team gets to work crafting a detailed plan. We provide you with architectural drawings and 3D renderings, allowing you to visualise the transformation and make informed decisions about materials, finishes, and layouts. This stage is collaborative and iterative, ensuring every detail is tailored to your satisfaction.

Material Selection

Once the design is finalised, we guide you through selecting the materials that will bring your project to life. From durable and beautiful benchtops to custom cabinetry materials, we source only the highest quality products that reflect your taste and fit your budget.

Post-Completion
Support

With the planning complete and materials sourced, our skilled craftsmen begin the transformation of your space. We manage all aspects of the construction process, maintaining open communication and minimal disruption to your daily life. Our team works efficiently while paying close attention to detail, ensuring impeccable results.

Final Walkthrough & Completion

As we near the completion of your project, we conduct a thorough walkthrough with you to ensure every aspect meets your expectations. Any final adjustments are made at this stage. Our goal is to ensure that the finished space is exactly as you envisioned, both in functionality and aesthetics.

Construction & Implementation

With the planning complete and materials sourced, our skilled craftsmen begin the transformation of your space. We manage all aspects of the construction process, maintaining open communication and minimal disruption to your daily life. Our team works efficiently while paying close attention to detail, ensuring impeccable results.

Why choose us?

Experienced Cabinet Makers & Benchtop Specialists

Experience & Expertise

With years of experience in renovations and new builds, we know how to bring your vision to life while ensuring the highest standards of quality and craftsmanship.

Personalised Service

We believe every project is unique. That's why we work closely with you from start to finish, ensuring your ideas are realised and your expectations are surpassed.

Commitment to Quality

Using only the best materials and the latest techniques, we guarantee a finish that is both beautiful and lasting.

values quality & customer satisfaction

Embark on the journey to transform your home

Choosing us means opting for a team that values quality and customer satisfaction above all. We bring years of expertise to your project, guaranteeing that each build or renovation is completed to the highest standard. Our commitment to excellence and our personalised approach to every project ensure that your home renovation experience is as seamless and rewarding as possible.

Embark on the journey to transform your home with Heritage Renovations. Contact us today to schedule a consultation and take the first step towards realising the potential of your space

values quality & customer satisfaction

Embark on the journey to transform your home

Choosing us means opting for a team that values quality and customer satisfaction above all. We bring years of expertise to your project, guaranteeing that each build or renovation is completed to the highest standard. Our commitment to excellence and our personalised approach to every project ensure that your home renovation experience is as seamless and rewarding as possible.

Embark on the journey to transform your home with Heritage Renovations. Contact us today to schedule a consultation and take the first step towards realising the potential of your space

Before - After

Our Gallery

Contact us

Get In Touch!

Ready to create the space you’ve always dreamed of? Contact Heritage Renovations today to schedule a consultation and start your journey to a breathtaking home makeover.
				
					const slider = document.getElementById('before-after-slider');
const before = document.getElementById('before-image');
const beforeImage = before.getElementsByTagName('img')[0];
const resizer = document.getElementById('resizer');

let active = false;

//Sort overflow out for Overlay Image
document.addEventListener("DOMContentLoaded", function() {
  let width = slider.offsetWidth;
  console.log(width);
  beforeImage.style.width = width + 'px';
});

//Adjust width of image on resize 
window.addEventListener('resize', function() {
  let width = slider.offsetWidth;
  console.log(width);
  beforeImage.style.width = width + 'px';
})

resizer.addEventListener('mousedown',function(){
  active = true;
 resizer.classList.add('resize');

});

document.body.addEventListener('mouseup',function(){
  active = false;
 resizer.classList.remove('resize');
});

document.body.addEventListener('mouseleave', function() {
  active = false;
  resizer.classList.remove('resize');
});

document.body.addEventListener('mousemove',function(e){
  if (!active) return;
  let x = e.pageX;
  x -= slider.getBoundingClientRect().left;
  slideIt(x);
  pauseEvent(e);
});

resizer.addEventListener('touchstart',function(){
  active = true;
  resizer.classList.add('resize');
});

document.body.addEventListener('touchend',function(){
  active = false;
  resizer.classList.remove('resize');
});

document.body.addEventListener('touchcancel',function(){
  active = false;
  resizer.classList.remove('resize');
});

//calculation for dragging on touch devices
document.body.addEventListener('touchmove',function(e){
  if (!active) return;
  let x;
  
  let i;
  for (i=0; i < e.changedTouches.length; i++) {
  x = e.changedTouches[i].pageX; 
  }
  
  x -= slider.getBoundingClientRect().left;
  slideIt(x);
  pauseEvent(e);
});

function slideIt(x){
    let transform = Math.max(0,(Math.min(x,slider.offsetWidth)));
    before.style.width = transform+"px";
    resizer.style.left = transform-0+"px";
}

//stop divs being selected.
function pauseEvent(e){
    if(e.stopPropagation) e.stopPropagation();
    if(e.preventDefault) e.preventDefault();
    e.cancelBubble=true;
    e.returnValue=false;
    return false;
}