iconSuperDir

Sponsors

How to customize the sponsors ads

You can customize the Sopnsors for:

  • Sponsors page information
  • Sponsors page faqs
  • Sponsors Ads Items
  • Sponsors Ads SlotsTotal
Sponsors Ads Items should not be more than Sponsors Ads SlotsTotal.

All these are customizable in the lib/config/sopnsors.ts file.

Sponsors Ads Items

sponsors

sponsors ads show in the home page, you can customize the ads items for:

  • name
  • description
  • imageUrl
  • url
  • startDate

2025-07-06 means the ads will show from 6th July 2025.

  • untilDate

2025-12-30 means the ads will show until 30th December 2025.

Example:

lib/config/sopnsors.ts
  sponsorItems: [
    {
      name: "LicenseGen",
      description: "Manage your license keys for softwares.",
      url: "https://licensegen.focusapps.app",
      imageUrl: "/sponsors/licensegen.png",
      startDate: new Date("2025-06-30"),
      untilDate: new Date("2025-12-30"),
    },
    {
      name: "SuperStarter",
      description: "The scalable and production-ready Next.js SaaS starter kit.",
      url: "https://superstarter.focusapps.app",
      imageUrl: "/sponsors/superstarter.png",
      startDate: new Date("2025-07-06"),
      untilDate: new Date("2025-12-30"),
    },
  ],
At present, users cannot pay the sponsor fee directly in the app, the process is that the user clicks the button to send an email, communicate the sponsor's advertising display time and other information, send the payment link to the user after confirmation, and modify the code to display the sponsor's product after the payment is successful

On this page