← Back to Products
Image Generation

Midjourney

AI-powered art generator creating stunning visual content from text prompts

Midjourney has become synonymous with high-quality AI-generated art, known for its distinctive aesthetic and artistic flair. The platform excels at creating visually striking images with rich details and creative interpretations of user prompts. It's particularly popular among artists, designers, and creative professionals who seek to explore new visual concepts and artistic styles.

Features

Artistic Style
Distinctive aesthetic quality
Community
Discord-based platform
Aspect Ratios
Flexible output formats
Upscaling
High-resolution enhancement

Layout example

Add the widget script to your layout for multiple pages.

File:components/SensayScript.tsx
"use client";

import Script from "next/script";
import { useEffect, useId } from "react";

export default function SensayScript({ src }: { src: string }) {
  // Generate a unique ID for script so NextJS can run it on client side navigation.
  // NextJS Script component by default runs script only once based on the src value.
  const id = useId();
  const url = new URL(src);
  url.searchParams.set("id", id);

  // Destroy the chatbot when the component unmounts.
  // Destroy chatbot elements as NextJS doesn't clean up the Script component on client side navigation.
  useEffect(() => {
    return () => {
      window.SensayChatbot?.destroy();
    };
  }, []);

  return <Script src={url.toString()} strategy="afterInteractive" />;
}
File:app/products/layout.tsx
import SensayScript from "@/components/SensayScript";

export default function ProductsLayout({ children }) {
  return (
    <div>
      {children}
      <SensayScript src="https://chat-widget.sensay.io/<chatbot-identifier>/embed-script.js" />
    </div>
  )
}