top of page
RAW.Exposed Logo

import { ok } from 'wix-http-functions';

export function get_llms(request) {
  return ok({
    headers: { 'Content-Type': 'text/plain; charset=utf-8' },
    body: LLMS_TXT
  });
}

const LLMS_TXT = `# RAW.Exposed

> Brisbane-based commercial real estate photography and video production studio. Helicopter aerial filming, drone aerial photography, and ground-level cinematography for capital markets, leasing campaigns, and property development marketing across South East Queensland.

## Core pages
- [Home](https://www.raw.exposed): Overview of services, portfolio, and clients.
- [About](https://www.raw.exposed/about): Founders Rory Broesder and William Shea Brown; company background.
- [Contact](https://www.raw.exposed/contact): Brief submission and direct contact details.

## Services
- [Helicopter Aerial Filming](https://www.raw.exposed/aerial-filming): Broadcast-quality helicopter cinematography for property, infrastructure, and development.
- [Aerial Photography](https://www.raw.exposed/aerial-photography): Helicopter and drone aerial stills.
- [Video Production](https://www.raw.exposed/video-production): Cinematic commercial real estate video.
- [Commercial Photography](https://www.raw.exposed/commercial-photography): Office, retail, and corporate.
- [Industrial Photography](https://www.raw.exposed/industrial-photography): Logistics, manufacturing, infrastructure.
- [Development Photography](https://www.raw.exposed/development-photography): Construction progress, masterplan, completion.
- [Residential Photography](https://www.raw.exposed/residential-photography): Prestige residential.
- [Graphic Design](https://www.raw.exposed/graphic-design): Marketing collateral and brochure design.

## Clients
RAW.Exposed has produced work for Charter Hall, Colliers, Cushman & Wakefield, JLL Australia, CBRE, Knight Frank, Savills, Centuria Capital, MP Commercial, Aviator Capital, Cornerstone Group, and COX Architecture.

## Contact
- Rory Broesder — rory@raw.exposed — +61 421 998 695
- William Shea Brown — shea@raw.exposed — +61 450 367 539
- Brisbane, Queensland, Australia
`;

bottom of page