// Compliance Records — Sector Pages // Single-file React components styled with TailwindCSS to match the clean, modern feel of tipper360.com. // Includes: Landing page + three sector pages intended to live under // /compliance-records (landing) // /compliance-records/receiving-sites // /compliance-records/contractors-councils // /compliance-records/operators // // How to use: // 1) Use for the main drop-down landing page. // 2) Use , , and for sector subpages. // 3) Swap CTA hrefs to your preferred demo/contact URLs. // 4) If your site uses a layout wrapper/nav, wrap these components accordingly. import React from "react"; // ---------- Shared UI bits ---------- const Container = ({ children, className = "" }) => (
{children}
); const Section = ({ children, className = "" }) => (
{children}
); const Badge = ({ children }) => ( {children} ); const H1 = ({ children, className = "" }) => (

{children}

); const H2 = ({ children, className = "" }) => (

{children}

); const P = ({ children, className = "" }) => (

{children}

); const PrimaryButton = ({ href = "#", children }) => ( {children} ); const SecondaryButton = ({ href = "#", children }) => ( {children} ); const FeatureList = ({ items }) => (
    {items.map((it, i) => (
  • {it}
  • ))}
); const Card = ({ children, className = "" }) => (
{children}
); // ---------- Landing: /compliance-records ---------- export default function ComplianceRecordsSectors() { return (
{/* Hero */}
Compliance & Records

Audit‑Ready Proof for Every Load

Be the easiest partner to work with. Hub360 captures geo/time stamps, photos, and signatures across your own fleet and subcontractors, then generates shareable proof packs in minutes.

Book a 15‑min demo Email info@hub360.ie

CSRD‑friendly • Scope 1 & 3 visibility • Green procurement ready

{/* Sectors grid */}

Choose your sector

Purpose‑built journeys for each workflow.

{/* Receiving Sites */} Facilities

Receiving Sites

Transfer/MRF, treatment, inert landfill & quarry backfill. Intake that’s DWTS‑ready with zero re‑keying.

Explore facilities
{/* Contractors & Councils */} Earthworks

Contractors & Councils

Civils, demolition and local authorities. Get DoWCoP & U1 evidence with WM3‑validated movements.

Explore contractors
{/* Operators */} Hauliers

Operators (Grab, Tipper, Skip)

Faster tips, fewer turn‑aways. WM3/LoW checks in‑cab and shareable receiver packs clients accept.

Explore operators
{/* Social proof / mini stats */}

2 min

to export a monthly Duty‑of‑Care pack

80%+

of loads captured digitally in pilots

Zero

re‑keying at facilities using our hand‑off

{/* CTA */}

Look more professional. Pass audits faster.

DWTS‑ready workflows with DoWCoP, U1 and Duty‑of‑Care evidence on tap.

Request a demo Call +353 1 531 3784
); } // ---------- Subpage: /compliance-records/receiving-sites ---------- export function ReceivingSitesPage() { return (
Facilities

Receiving Sites — DWTS‑Ready Intake

For transfer/MRF, treatment, inert landfill and quarry backfill. Accept digital e‑dockets from hauliers, reconcile to weighbridge in minutes, and stage DWTS payloads for submission without re‑keying.

Book a demo Back to Compliance

DWTS Connector

Weighbridge Reconciliation

Digital Hand‑off Spec

Evidence & Reporting

Be the easiest site to tip at

Publish a free carrier hand‑off and cut re‑keying to zero.

Talk to our team
); } // ---------- Subpage: /compliance-records/contractors-councils ---------- export function ContractorsCouncilsPage() { return (
Earthworks

Contractors & Councils — DoWCoP, U1 & Duty‑of‑Care

Replace ring‑arounds and paper folders with a single source of truth across your projects and subcontractors. Get DoWCoP mass‑balance, U1 counters and audit‑ready evidence packs on tap.

Request a demo Back to Compliance

DoWCoP Pack

U1 Exemption Guardrails

WM3 Assist

Proof & Reporting

Look professional to clients & authorities

Consistent evidence across your own fleet and subbies.

Start a pilot
); } // ---------- Subpage: /compliance-records/operators ---------- export function OperatorsPage() { return (
Hauliers

Operators — Faster Tips, Cleaner Records

For grab, tipper and skip fleets. Capture everything in the cab, generate receiver packs the gate accepts, and keep clients happy with shareable proof packs.

Book a 15‑min demo Back to Compliance

In‑Cab Capture

Compliance Guardrails

Receiver Packs

Proof Packs for Clients

Be the haulier sites prefer

Turn up with clean digital records and get waved through.

See how it works
); }