Integration Examples
Next.js Integration
App Router "After" pattern—direct embed, no API route
After (simplest)
export default function CompaniesPage() {
return (
<img
src="https://logos.getquikturn.io/stripe.com?token=pk_abc123&size=128"
alt="Stripe"
loading="lazy"
/>
);
}With next/image
import Image from 'next/image';
export default function CompaniesPage() {
const token = process.env.NEXT_PUBLIC_QUIKTURN_PUBLISHABLE_KEY;
return (
<Image
src={`https://logos.getquikturn.io/stripe.com?token=${token}&size=128`}
alt="Stripe"
width={128}
height={128}
unoptimized // CDN already optimizes
/>
);
}Add theme=light|dark or greyscale=true to the URL if needed. No API route or secret key required.