Custom HTML
For static sites, custom-built applications, or any platform not listed above. These are the raw snippets that work anywhere.
1. JSON-LD Structured Data
Add this script tag to the <head> of your HTML:
<!DOCTYPE html>
<html>
<head>
<!-- ... your existing head tags ... -->
<script
src="https://cdn.nordax.ai/cdn/entity/{slug}.js"
defer
></script>
</head>
<body>
<!-- your content -->
</body>
</html>The defer attribute ensures the script doesn't block page rendering. It injects JSON-LD structured data and (for Verified+ tiers) Open Graph meta tags.
2. Trust Badge
Add this to your footer or sidebar, just before </body>:
<div id="nordax-badge" data-entity="{slug}"></div>
<script src="https://cdn.nordax.ai/cdn/badge/embed.js" defer></script>Or use a direct image tag if you prefer no JavaScript:
<a href="https://nordax.ai/entities/{slug}" target="_blank" rel="noopener">
<img
src="https://cdn.nordax.ai/cdn/trust-badge/{slug}.svg"
alt="Nordax Verified"
width="150"
height="50"
/>
</a>3. llms.txt Hosting
Option A: Direct Upload
Download llms.txt from the Nordax dashboard (Integration → Exports) and upload it to your web root so it's accessible at yourdomain.com/llms.txt.
Option B: Nginx Proxy (Recommended)
Add to your Nginx server block:
location = /llms.txt {
proxy_pass https://entities.nordax.ai/{slug}/llms.txt;
proxy_set_header Host entities.nordax.ai;
proxy_ssl_server_name on;
}Option C: Apache Rewrite
Add to your .htaccess or Apache config:
RewriteEngine On
RewriteRule ^llms\.txt$ https://entities.nordax.ai/{slug}/llms.txt [P,L]Verify Installation
After installing, verify everything is working:
JSON-LD
Open DevTools → Elements, and search for application/ld+json. You should see a script tag with your entity data.
Trust Badge
Check that the badge renders in your footer. It should link to your public Nordax profile.
llms.txt
Visit yourdomain.com/llms.txt in your browser. You should see a plain-text summary of your business.