MM Software Widget

A reusable footer widget for your v0 pages. Embed via iframe after deploying.

Default Variant

Full-featured widget with logo, tagline, and service tags

Embed Code

<iframe
  src="https://your-deployed-domain.vercel.app/widget/default"
  width="400"
  height="180"
  style="border:none;overflow:hidden;background:transparent;"
  allowtransparency="true"
  loading="lazy"
  title="MM Software Widget"
></iframe>

Route: /widget/default

Compact Variant

Smaller inline widget, perfect for sidebars or narrow footers

Embed Code

<iframe
  src="https://your-deployed-domain.vercel.app/widget/compact"
  width="280"
  height="56"
  style="border:none;overflow:hidden;background:transparent;"
  allowtransparency="true"
  loading="lazy"
  title="MM Software Widget"
></iframe>

Route: /widget/compact

Minimal Variant

Simple text link with icon, ideal for small footer attributions

Embed Code

<iframe
  src="https://your-deployed-domain.vercel.app/widget/minimal"
  width="200"
  height="36"
  style="border:none;overflow:hidden;background:transparent;"
  allowtransparency="true"
  loading="lazy"
  title="MM Software Widget"
></iframe>

Route: /widget/minimal

Direct Component Usage

import { MMSoftwareWidget } from "@/components/mm-software-widget"

// Default (full widget)
<MMSoftwareWidget />

// Compact (inline)
<MMSoftwareWidget variant="compact" />

// Minimal (text link)
<MMSoftwareWidget variant="minimal" />