✔ In stock — ships in 3–7 business days from our Canadian warehouse.
✔ Secure checkout · ✔ Easy returns · ✔ Genuine, authentic Amana Tool product
Need a quantity quote or help choosing the right tool? Contact our team.
The Amana Tool 46331 is a professional-grade spiral router bit for precision CNC and woodworking. Solid Carbide Spiral 3/16" Dia — engineered for clean cuts, long tool life, and repeatable results.
Why choose Amana Tool 46331
- Genuine Amana Tool tooling — industry-trusted quality.
- Precision-ground geometry for efficient chip evacuation and smooth finishes.
- Fast Canadian shipping and expert support.
/**
* Cloudflare Worker for dnsdisplay.com
* Handles:
* - /robots.txt (appends Content-Signal block)
* - /llms.txt (site summary for AI crawlers)
* - Markdown content negotiation (Accept: text/markdown)
* - Everything else passes straight through to origin
*
* 2026-07-20: Removed /auth.md, /.well-known/oauth-authorization-server,
* /.well-known/openid-configuration, /.well-known/oauth-protected-resource
* and /.well-known/api-catalog. Those advertised an OAuth/OIDC authorization
* server (oauth/authorize, oauth/token, oauth/register, jwks.json) that does
* not exist on this domain - every advertised URL returned 404. The matching
* "Agent Authentication" section was also removed from llms.txt so AI crawlers
* are no longer pointed at dead endpoints.
*
* 2026-07-24: llms.txt enriched - Key Pages now lists the portfolio categories
* and featured project pages (published July 2026); Contact link points
* directly at /get-in-touch/ (the /contact/ URL 301s there). Removed the
* robots.txt append handler: the origin robots.txt already emits its own
* Content-Signal line, so the Worker copy was a duplicate.
*/
const DOMAIN = "https://dnsdisplay.com";
export default {
async fetch(request, env, ctx) {
const url = new URL(request.url);
const path = url.pathname;
// -- llms.txt -----------------------------------------------------------
if (path === "/llms.txt") {
const body = `# DNS Industries
> North American leader in custom millwork and retail fixture manufacturing for multi-location rollouts, QSR, hospitality, and premium retail brands.
## Summary
DNS Industries is a Vaughan, Ontario-based manufacturer specializing in high-quality architectural millwork and store fixtures. The company supports national and international retail rollouts with integrated services including design engineering, value engineering, manufacturing, logistics, and installation.
DNS is built for scalability, delivering consistent, repeatable, and cost-controlled solutions across multi-location programs. The company serves leading global and regional brands across North America in retail, cannabis, QSR, hospitality, and institutional sectors.
## Core Capabilities
- Custom millwork fabrication (MDF, veneer, laminate, solid surface, metal integration)
- Store fixture manufacturing (display systems, shelving, cabinetry, feature walls)
- Design for Manufacturing (DFM) and value engineering
- Prototype development and rollout standardization
- CNC machining, laser cutting, and advanced fabrication
- Logistics coordination and installation support
## Key Differentiators
- Proven ability to execute high-volume, multi-location rollouts
- Integrated end-to-end service: design through installation
- Scalable manufacturing for consistent brand standards across locations
- Value engineering to optimize cost without compromising quality
- Experienced team serving global and regional brands
## Sectors Served
- Quick Service Restaurants (QSR)
- Hospitality
- Premium and specialty retail
- Cannabis retail
- Institutional
## Key Pages
- [Home](${DOMAIN}/)
- [About](${DOMAIN}/about/)
- [Our Work](${DOMAIN}/ourwork/)
- [Request a Quote](${DOMAIN}/get-in-touch/)
## Portfolio by Category
- [Cannabis Retail](${DOMAIN}/ourwork/#cannabis-retail)
- [Retail & Consumer Brands](${DOMAIN}/ourwork/#retail-brands)
- [Institutional](${DOMAIN}/ourwork/#institutional)
## Featured Projects
- [Brownsburg School](${DOMAIN}/brownsburg-school/) - curved institutional millwork for a 16-classroom school, with Chagall
- [Mohawks Bay of Quinte Elder Care](${DOMAIN}/mohawks-elder-care/) - healthcare millwork for a long-term-care residence, with Chagall
- [Fika Cannabis / Fire & Flower](${DOMAIN}/fika-cannabis/) - multi-banner retail fixture program
- [Mellow Leaf Cannabis](${DOMAIN}/mellow-leaf-cannabis/) - boutique dispensary millwork
- [Hunny Pot Cannabis](${DOMAIN}/hunny-pot-cannabis/) - quick-serve retail fixtures
- [Mihi Cannabis](${DOMAIN}/mihi-cannabis/) - education-forward dispensary design
- [Le Creuset - The Well](${DOMAIN}/sajo-le-creuset/) - premium retail fixtures
- [Sessions Cannabis](${DOMAIN}/sessions-cannabis/) - multi-location dispensary program
`;
return new Response(body, {
status: 200,
headers: {
"Content-Type": "text/plain; charset=utf-8",
"Cache-Control": "public, max-age=3600"
}
});
}
// -- Markdown content negotiation ---------------------------------------
const acceptHeader = request.headers.get("Accept") || "";
if (acceptHeader.includes("text/markdown")) {
const originResponse = await fetch(request);
const html = await originResponse.text();
const markdown = htmlToMarkdown(html, url.href);
const tokens = estimateTokens(markdown);
return new Response(markdown, {
status: 200,
headers: {
"Content-Type": "text/markdown; charset=utf-8",
"x-markdown-tokens": String(tokens),
"Cache-Control": "public, max-age=300",
"Vary": "Accept"
}
});
}
// -- Default: pass through to origin ------------------------------------
return fetch(request);
}
};
// -- Helpers -----------------------------------------------------------------
/**
* Minimal HTML -> Markdown converter suitable for agent consumption.
*/
function htmlToMarkdown(html, pageUrl) {
return html
.replace(/