import Link from "next/link"; import Image from "next/image"; export const metadata = { title: "Fence Rentals | VG Fence Products", description: "Temporary fence rentals for construction sites, events, and security perimeters. Flexible rental terms and quick delivery.", }; export default function RentalsPage() { const products = [ { name: "Temporary Fence Panels", desc: "Durable and easy to assemble", img: "/assets/temp-fence-panel.png" }, { name: "Temporary Fence Gates", desc: "Single or double swing gates", img: "/assets/about-fencing.png" }, { name: "Fence Wheels", desc: "Smooth movement for gate panels", img: "/assets/manufacturing-hero.png" }, { name: "Wind Bracing", desc: "Prevent fence panels from tipping", img: "/assets/about-fencing.png" }, { name: "Fence Bases", desc: "Concrete, rubber, or plastic bases for stability", img: "/assets/manufacturing-hero.png" }, { name: "Fence Clamps & Accessories", desc: "Secure connections for panels", img: "/assets/about-fencing.png" }, { name: "Sandbags / Ballast", desc: "Extra stability for windy or busy areas", img: "/assets/manufacturing-hero.png" }, { name: "Debris & Safety Netting", desc: "Optional add-ons for construction sites", img: "/assets/about-fencing.png" }, ]; const applications = [ { id: 1, title: "Construction Sites", desc: "Keep workers and equipment secure" }, { id: 2, title: "Events and Festivals", desc: "Crowd control and perimeter fencing" }, { id: 3, title: "Sports and Film Production", desc: "Temporary barriers for staff and public safety" }, { id: 4, title: "Short-Term and Long-Term Projects", desc: "Flexible rental periods" }, ]; return (
{/* ── INNER BANNER ── */}

Fence Rentals

Home / Rentals
{/* ── INTRO SECTION (REDESIGNED) ── */}
FENCE RENTALS

Temporary Fence Rentals for Construction, Events, and Security

VG Fence provides high-quality temporary fencing solutions for contractors, event organizers, and property managers. Our rentals are flexible, reliable, and designed to secure construction sites, public events, and temporary perimeters.

{/* */} Installation support for temporary fences is available for select projects
{/*
85%

Satisfied Customer

Reliable support for contractors and event managers across Ontario projects.

*/}
Industrial fencing installation experts
{/* ── PRODUCTS SECTION ── */}
Equipment List

Products & Equipment Available

{products.map((p, i) => (
{p.name}

{p.name}

{p.desc}

))}
{/* ── APPLICATIONS SECTION ── */}
Tailored Solutions

Applications

{applications.map((app) => (
{app.id}

{app.title}

{app.desc}

))}
{/* ── WHY CHOOSE SECTION (IMAGE + TIMELINE) ── */}
VG Fence Temporary Fencing

Why Choose VG Fence Rentals

  • Flexible rental terms (daily, weekly, monthly)
  • Durable and professional-grade materials
  • Quick delivery & setup support available
  • Galvanized or black finishes
  • Reliable support for contractors and event managers

Secure Your Temporary Fencing Today

Request a Quote
); }