help@rskworld.in +91 93305 39277
RSK World
  • Home
  • Development
    • Web Development
    • Mobile Apps
    • Software
    • Games
    • Project
  • Technologies
    • Data Science
    • AI Development
    • Cloud Development
    • Blockchain
    • Cyber Security
    • Dev Tools
    • Testing Tools
  • Blog
  • About
  • Contact

Theme Settings

Color Scheme
Display Options
Font Size
100%
Back to Project
RSK World
slack-bot-assistant
/
bot
RSK World
slack-bot-assistant
Slack Bot Assistant - Python + Slack API + SQLite + PHP Dashboard + Bot Commands + Automation
bot
  • __pycache__
  • app.py30.8 KB
  • config.py1.9 KB
  • helpers.py5.5 KB
  • models.py4.4 KB
  • scheduler.py3.1 KB
  • utils.py12.6 KB
index.html.gitignore
index.html
Raw Download
Find: Go to:
<!DOCTYPE html>
<html lang="en">

<head>
    <!-- 
    Slack Bot Assistant - Landing Page
    Developer: Molla Samser (Founder, RSK World)
    Design & Testing: Rima Khatun
    Website: https://rskworld.in
    Contact: hello@rskworld.in | +91 93305 39277
    Year: 2026
    -->
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Slack Bot Assistant | Productivity Powered by AI</title>
    <meta name="description"
        content="Automate workflows, manage channels, and enhance team collaboration with our AI-powered Slack Bot.">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap" rel="stylesheet">
    <style>
        :root {
            --slack-purple: #4A154B;
            --slack-blue: #36C5F0;
            --slack-green: #2EB67D;
            --slack-yellow: #ECB22E;
            --bg-dark: #0f172a;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --text-primary: #f8fafc;
            --text-secondary: #94a3b8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Outfit', sans-serif;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        .gradient-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(74, 21, 75, 0.15), transparent),
                radial-gradient(circle at 80% 70%, rgba(54, 197, 240, 0.1), transparent);
            z-index: -1;
        }

        nav {
            padding: 2rem 10%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            color: var(--slack-yellow);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--slack-blue);
        }

        .hero {
            padding: 8rem 10% 4rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 4rem;
        }

        .hero-content {
            flex: 1;
        }

        .hero-content h1 {
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 2rem;
            background: linear-gradient(to right, #fff, var(--slack-blue));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            max-width: 600px;
        }

        .btn-group {
            display: flex;
            gap: 1.5rem;
        }

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background-color: var(--slack-purple);
            color: white;
            border: none;
            box-shadow: 0 10px 20px rgba(74, 21, 75, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(74, 21, 75, 0.4);
        }

        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .hero-image {
            flex: 1;
            position: relative;
        }

        .hero-image img {
            width: 100%;
            border-radius: 24px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .features {
            padding: 8rem 10%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: var(--glass-bg);
            padding: 3rem;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-10px);
            border-color: var(--slack-blue);
        }

        .feature-card i {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            display: block;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: var(--text-secondary);
        }

        footer {
            padding: 4rem 10%;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }

        .footer-details {
            margin-top: 2rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        @media (max-width: 1024px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding-top: 4rem;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .btn-group {
                justify-content: center;
            }

            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }
        }
    </style>
</head>

<body>
    <div class="gradient-bg"></div>

    <nav>
        <div class="logo">
            <i class="fab fa-slack"></i>
            <span>BotAssistant</span>
        </div>
        <div class="nav-links">
            <a href="#features">Features</a>
            <a href="demo.html">Live Demo</a>
            <a href="https://rskworld.in" target="_blank">RSK World</a>
        </div>
    </nav>

    <section class="hero">
        <div class="hero-content">
            <h1>Automate Your Team's Success</h1>
            <p>The Slack Bot Assistant provides AI-powered workflow automation, intelligent channel management, and deep
                app integrations to keep your team productive.</p>
            <div class="btn-group">
                <a href="demo.html" class="btn btn-primary">
                    <i class="fab fa-slack"></i> Add to Slack
                </a>
                <a href="#features" class="btn btn-secondary">Explore Features</a>
            </div>
        </div>
        <div class="hero-image">
            <img src="slack-bot-assistant.png" alt="Slack Bot Assistant Preview">
        </div>
    </section>

    <section id="features" class="features">
        <div class="feature-card">
            <i class="fas fa-robot" style="color: var(--slack-blue);"></i>
            <h3>AI Assistance</h3>
            <p>Get instant answers and task management help using our advanced productivity engine.</p>
        </div>
        <div class="feature-card">
            <i class="fas fa-bolt" style="color: var(--slack-yellow);"></i>
            <h3>Workflow Automation</h3>
            <p>Trigger complex workflows directly from Slack with custom shortcuts and slash commands.</p>
        </div>
        <div class="feature-card">
            <i class="fas fa-tasks" style="color: var(--slack-green);"></i>
            <h3>Channel Management</h3>
            <p>Automate archiving, reporting, and member governance across your workspace.</p>
        </div>
    </section>

    <section id="pricing" style="padding: 8rem 10%; text-align: center;">
        <h2 style="font-size: 3rem; margin-bottom: 4rem;">Choose Your Plan</h2>
        <div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem;">
            <div class="feature-card" style="border: 1px solid rgba(255,255,255,0.05);">
                <h3 style="color: var(--slack-blue);">Free</h3>
                <div style="font-size: 3rem; font-weight: 800; margin: 1rem 0;">$0</div>
                <p style="margin-bottom: 2rem;">Essential bot features for small teams.</p>
                <ul style="list-style: none; text-align: left; margin-bottom: 2rem; color: var(--text-secondary);">
                    <li><i class="fas fa-check" style="color: var(--slack-green);"></i> Basic Bot Logic</li>
                    <li><i class="fas fa-check" style="color: var(--slack-green);"></i> 5 Workflows/mo</li>
                    <li><i class="fas fa-check" style="color: var(--slack-green);"></i> Community Support</li>
                </ul>
                <a href="#" class="btn btn-secondary" style="width: 100%;">Get Started</a>
            </div>
            <div class="feature-card"
                style="border: 2px solid var(--slack-purple); transform: scale(1.05); background: rgba(74, 21, 75, 0.05);">
                <div
                    style="background: var(--slack-purple); color: white; padding: 0.5rem; position: absolute; top: 0; left: 50%; transform: translateX(-50%); border-radius: 0 0 12px 12px; font-size: 0.8rem; font-weight: 600;">
                    MOST POPULAR</div>
                <h3 style="color: var(--slack-purple);">Pro</h3>
                <div style="font-size: 3rem; font-weight: 800; margin: 1rem 0;">$19</div>
                <p style="margin-bottom: 2rem;">Advanced AI for growing businesses.</p>
                <ul style="list-style: none; text-align: left; margin-bottom: 2rem; color: var(--text-secondary);">
                    <li><i class="fas fa-check" style="color: var(--slack-green);"></i> Sentiment AI</li>
                    <li><i class="fas fa-check" style="color: var(--slack-green);"></i> Unlimited Workflows</li>
                    <li><i class="fas fa-check" style="color: var(--slack-green);"></i> Priority Support</li>
                </ul>
                <a href="#" class="btn btn-primary" style="width: 100%;">Go Pro</a>
            </div>
            <div class="feature-card" style="border: 1px solid rgba(255,255,255,0.05);">
                <h3 style="color: var(--slack-yellow);">Enterprise</h3>
                <div style="font-size: 3rem; font-weight: 800; margin: 1rem 0;">Custom</div>
                <p style="margin-bottom: 2rem;">Full customization for enterprises.</p>
                <ul style="list-style: none; text-align: left; margin-bottom: 2rem; color: var(--text-secondary);">
                    <li><i class="fas fa-check" style="color: var(--slack-green);"></i> Tailored AI Models</li>
                    <li><i class="fas fa-check" style="color: var(--slack-green);"></i> Dedicated Manager</li>
                    <li><i class="fas fa-check" style="color: var(--slack-green);"></i> 99.9% SLM</li>
                </ul>
                <a href="#" class="btn btn-secondary" style="width: 100%;">Contact Sales</a>
            </div>
        </div>
    </section>

    <section id="faq" style="padding: 8rem 10%; background: rgba(255,255,255,0.02);">
        <h2 style="font-size: 3rem; text-align: center; margin-bottom: 4rem;">Frequently Asked Questions</h2>
        <div style="max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem;">
            <div style="background: var(--glass-bg); padding: 1.5rem; border-radius: 12px; cursor: pointer;">
                <h4 style="display: flex; justify-content: space-between; align-items: center;">
                    How secure is our data? <i class="fas fa-chevron-down"></i>
                </h4>
                <p style="color: var(--text-secondary); margin-top: 1rem;">We use enterprise-grade encryption and comply
                    with global safety standards. Your conversations are private.</p>
            </div>
            <div style="background: var(--glass-bg); padding: 1.5rem; border-radius: 12px; cursor: pointer;">
                <h4 style="display: flex; justify-content: space-between; align-items: center;">
                    Can I customize the bot's features? <i class="fas fa-chevron-down"></i>
                </h4>
                <p style="color: var(--text-secondary); margin-top: 1rem;">Yes! The bot is highly modular. You can add
                    or remove integrations via the admin dashboard.</p>
            </div>
            <div style="background: var(--glass-bg); padding: 1.5rem; border-radius: 12px; cursor: pointer;">
                <h4 style="display: flex; justify-content: space-between; align-items: center;">
                    Is there a mobile app? <i class="fas fa-chevron-down"></i>
                </h4>
                <p style="color: var(--text-secondary); margin-top: 1rem;">Our bot works natively within the Slack
                    mobile app, so you can stay productive anywhere.</p>
            </div>
        </div>
    </section>

    <footer>
        <p>&copy; 2026 Slack Bot Assistant. Part of the RSK World Network.</p>
        <div class="footer-details">
            Developed by <strong>Molla Samser</strong> | Tested by <strong>Rima Khatun</strong><br>
            Contact: hello@rskworld.in | <a href="https://rskworld.in" style="color: inherit;">rskworld.in</a>
        </div>
    </footer>
</body>

</html>
390 lines•14.5 KB
markup
.gitignore
Raw Download
Find: Go to:
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
.venv

# Database
*.db
*.sqlite
*.sqlite3
bot_data.db

# Environment variables
.env
.env.local

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# Logs
*.log
logs/

# OS
.DS_Store
Thumbs.db

# Project specific
config.ini
secrets.json

41 lines•336 B
text
🚀 Support RSK World

Subscribe to our YouTube channel for latest tutorials & updates!



Click subscribe & support our work ❤️

About RSK World

Founded by Molla Samser, with Designer & Tester Rima Khatun, RSK World is your one-stop destination for free programming resources, source code, and development tools.

Founder: Molla Samser
Designer & Tester: Rima Khatun

Development

  • Game Development
  • Web Development
  • Mobile Development
  • AI Development
  • Development Tools

Legal

  • Terms & Conditions
  • Privacy Policy
  • Disclaimer

Contact Info

Nutanhat, Mongolkote
Purba Burdwan, West Bengal
India, 713147

+91 93305 39277

hello@rskworld.in
support@rskworld.in

© 2026 RSK World. All rights reserved.

Content used for educational purposes only. View Disclaimer