from telegram import Update
from telegram.ext import ContextTypes
from utils.keyboards import inline
from utils.decorators import anti_flood

TEXT = (
    "💼 <b>Business Deals</b>\n\n"
    "• Need bulk products?\n"
    "• Need reseller access?\n"
    "• Need custom development?\n"
    "• Need partnership opportunities?\n\n"
    "Tap below to contact an admin."
)

@anti_flood
async def business(update: Update, context: ContextTypes.DEFAULT_TYPE):
    await update.message.reply_html(
        TEXT, reply_markup=inline([[("📞 Contact Admin", "sup:contact")]]))
