const LLMS_TXT = `# House of Origo
> House of Origo (also known as Origo Studios and Origo AI) is a digital studio crafting branding, marketing, and AI solutions for modern brands.
House of Origo operates under three brand identities:
- House of Origo — the parent brand and creative studio
- Origo Studios — the branding, design, and storytelling arm
- Origo AI — the AI solutions and automation division
## Core Services
- [AI Solutions](https://houseoforigo.com/ai-solutions): Custom AI integrations and automation, delivered as Origo AI.
- [Marketing Solutions](https://houseoforigo.com/marketing-solutions): Brand strategy and marketing campaigns.
- [Branding & Design](https://houseoforigo.com): Visual identity and design systems, delivered as Origo Studios.
## Brand Names & Variants
All of these refer to the same organization at houseoforigo.com:
- House of Origo
- The House of Origo
- Origo Studios
- Origo AI
- origo.
## Contact
- Website: https://houseoforigo.com
`;
export default {
async fetch(request) {
const url = new URL(request.url);
if (url.pathname === "/llms.txt") {
return new Response(LLMS_TXT, {
headers: { "Content-Type": "text/plain; charset=utf-8" }
});
}
return fetch(request);
}
};