/* global React */ // Offers const NS_O = window.GamekeepersCottageDesignSystem_070bc7; const { Eyebrow, Button, Card, Badge } = NS_O; const Photo = window.GKPhoto; const useShell = window.GKuseShell; const IMG = window.GK_IMG; const OFFERS = [ ['Second week half price', 'Off-season', IMG.woodDen, 'Book two consecutive weeks outside the peak season and the second week is half price. Perfect for a proper, unhurried woodland retreat — settle in and let the days slow right down.', 'Subject to availability · off-peak dates'], ['Midweek woodland breaks', 'Short stays', IMG.living1, 'Three- and four-night midweek breaks from £130 per night. Ideal for a quiet escape between the weekends, with the whole wood to yourselves.', 'From £130/night · Mon–Thu'], ['Last-minute availability', 'This month', IMG.garden2, 'Free dates in the next few weeks at our best rates. If you can be flexible, get in touch and we’ll see what we can do for you.', 'Ask us about current gaps'], ['Christmas & New Year', 'Seasonal', IMG.stroll, 'Spend the festive season in the wood — a log burner, frosty walks and complete peace. Limited dates, available on request.', 'On request · books up early'], ]; function OffersContent() { const { openBooking } = useShell(); return (
Special offers

Ways to make your stay go further

A few honest offers from us — no gimmicks. If your dates are flexible, do ask; we'd always rather the cottage was enjoyed than empty.

{OFFERS.map(([title, tag, img, body, fine]) => (
{tag}

{title}

{body}

{fine}
))}

Not sure which dates work?

Tell us roughly when you'd like to come and how many of you there are — Nick will come back with options and the best price.

); } window.GKmount('offers', OffersContent);