Build a Game.
Ship It Here.
aicente is an open platform. If you build a game that fits the technical standards below, we'll feature it alongside Cow Jump, Orbit Ops, and CERN Escape — with full leaderboard, discovery, and player analytics.
Why build on aicente?
Technical Requirements
Your game must meet these standards to be accepted onto the platform.
Project Structure
Follow this structure to integrate cleanly with the monorepo.
SOLO GAME
src/
├── app/
│ └── your-game/
│ ├── layout.tsx # Game-specific CSS (dark theme, custom classes)
│ ├── page.tsx # Landing page (rules, how to play, CTA)
│ └── play/
│ └── page.tsx # The actual game (canvas, game loop)
├── components/
│ └── your-game/
│ ├── GameCanvas.tsx # Main canvas + game loop (useRef + rAF)
│ └── HUD.tsx # Score, lives, game-over overlay
└── lib/
└── your-game/
└── types.ts # Shared interfaces and constantsMULTIPLAYER GAME
src/
├── app/
│ └── your-game/
│ ├── page.tsx # Landing
│ ├── lobby/page.tsx # Session list + join
│ └── game/[sessionId]/
│ └── page.tsx # Game room
├── components/your-game/
│ ├── GameView.tsx # Canvas game with socket.io client
│ └── HUD.tsx # UI overlay
├── lib/your-game/
│ └── types.ts # Shared types (GameSession, PlayerState, etc.)
└── pages/api/
└── your-game-socket.ts # Socket.io server (attached to Next.js HTTP)Code Patterns
LEADERBOARD PATTERN
// Standard leaderboard pattern used across all aicente games
const LB_KEY = 'yourgame_leaderboard';
const NAME_KEY = 'yourgame_player_name';
interface LBEntry { name: string; score: number; date: string; }
function saveScore(name: string, score: number) {
const entries: LBEntry[] = JSON.parse(localStorage.getItem(LB_KEY) || '[]');
entries.push({ name, score, date: new Date().toLocaleDateString() });
entries.sort((a, b) => b.score - a.score);
localStorage.setItem(LB_KEY, JSON.stringify(entries.slice(0, 50)));
}MULTIPLAYER SOCKET PATTERN
// Socket.io server pattern — src/pages/api/your-game-socket.ts
import { Server } from 'socket.io';
import type { NextApiRequest, NextApiResponse } from 'next';
export const config = { api: { bodyParser: false } };
export default function handler(_req: NextApiRequest, res: NextApiResponse) {
const sock = (res as any).socket;
if (!sock.server.yourGameIo) {
const io = new Server(sock.server, {
path: '/api/your-game-socket',
addTrailingSlash: false,
cors: { origin: '*', methods: ['GET', 'POST'] },
});
sock.server.yourGameIo = io;
io.on('connection', (socket) => {
// Your game logic here
});
}
res.end();
}
// Client connection — use polling first to initialize the server
const socket = io({ path: '/api/your-game-socket', transports: ['polling', 'websocket'] });FAQ
Submit Your Game
Fill out this form and we'll review your submission within 48 hours.
By submitting you agree to the platform's open-source game contribution guidelines.
Action Gaming Hub — Browser Games, Leaderboards & Tournaments
Action Gaming Hub is the browser gaming platform inside aicente. Play free browser games instantly — no download, no install, no account required for guests. Compete on leaderboards, join tournaments, and challenge your community. Developers can build and deploy games directly on the platform using Next.js and the Canvas API.
How to Get Started
- 1
Pick a game and play
Choose from live games in the Action Gaming Hub. Click Play — the game loads instantly in your browser. No download, no app, no account required. Works on desktop and mobile.
- 2
Set your player name
Enter a player name before starting. Your scores are tracked on the leaderboard under your chosen name. Return to any game to continue competing for the top spot.
- 3
Check the leaderboard
Every game has a built-in leaderboard showing top scores globally. Compete against other players, beat personal bests, and earn featured placement for the highest scores.
- 4
Submit your game (developers)
Built a game using Next.js and the Canvas API? Apply to the Action Gaming Hub developer program. Accepted games are featured alongside existing titles and reach the full aicente user base immediately at launch.
Key Benefits
- Instant play — no downloads, no installs, browser-only gaming
- Live leaderboards — compete globally across all games
- Multiplayer support — real-time multiplayer via Socket.io infrastructure
- EN/TR bilingual — games available in English and Turkish
- Developer program — submit your game and get featured on the platform
- Free to play — all current games are free with no in-app purchases
Frequently Asked Questions
What games are available on Action Gaming Hub?
Action Gaming Hub currently features Cow Jump (platformer), CERN Escape (multiplayer survival beneath the Large Hadron Collider), and Orbit Ops (space simulation). New games are in development. All live games are free to play instantly in your browser.
Do I need an account to play games on Action Gaming Hub?
No account is required to play. You enter a player name at the start of each session and your score is tracked on the leaderboard. Creating an aicente account lets you maintain your player identity and access persistent leaderboard history across sessions.
Can I build and submit my own game?
Yes. Action Gaming Hub is an open developer platform. If you build a game using Next.js 15 and the 2D Canvas API, apply to the developer program. Accepted games receive free hosting, built-in leaderboard integration, EN/TR language support, and discovery through the gaming hub to the full aicente user base.
Is Action Gaming Hub suitable for team engagement and community events?
Yes. Businesses use Action Gaming Hub to run internal gaming challenges, leaderboard competitions, and community engagement events. The tournament and challenge infrastructure makes it easy to run scored competitions with prize recognition.
The aicente Platform — Your Complete AI Business Workspace
aicente is designed around a simple principle: every tool a modern business needs should live in one connected platform, share the same data, and work together without integration complexity. Whether you are a freelancer managing a handful of clients or a multi-location business coordinating a team of fifty, aicente scales with your operation without requiring you to switch products, re-import data, or manage separate subscriptions as you grow.
The most powerful feature of aicente is not any individual tool — it is how all tools work together. A contact you add to Action CRM is immediately available in Action Proposal, Action Sign, Action Calendar, and Action Email. A signed contract in Action Sign automatically triggers a project in Action Planning and an invoice in Action Invoicing. A lead captured from your Action Link bio page flows directly into your CRM pipeline. A customer booking from Action Calendar syncs with your team schedule and triggers a confirmation email through Action Email. Nothing is siloed. Everything connects by design.
Every aicente tool includes native AI assistance. Drafting a proposal? The AI suggests pricing, writes section text, and formats your service items based on similar proposals in your history. Sending a follow-up email? The AI writes the message based on the contact's full activity timeline and the current deal stage. Managing your restaurant menu? AI generates item descriptions and suggests category organization based on your cuisine type. Building a waitlist? AI writes the launch announcement email and the referral incentive copy. The AI in aicente is not a chatbot add-on — it is woven into the core workflow of every action you take.
No Per-User Pricing Traps
Most business software charges per seat, which means your costs grow every time you add a team member. aicente is priced per workspace, not per user. Adding your entire team does not increase your monthly bill. The Pro plan covers unlimited users within a workspace, making aicente one of the most cost-effective platforms for growing teams who need powerful tools without the enterprise price tag.
Enterprise Security on Every Plan
aicente uses industry-standard encryption for all data at rest and in transit. Role-based access controls let administrators decide who can view contacts, send proposals, approve invoices, and access financial records. All e-signatures through Action Sign are legally binding under the ESIGN Act and eIDAS regulations. Payment processing through Action Payments is PCI-DSS compliant. Your data is always yours — export everything at any time in standard formats.
Built for Speed, Not Just Features
Setup time for most aicente tools is measured in minutes, not weeks. No consultants, no implementation projects, no lengthy training sessions required. The interface is designed for business owners and their teams — not for enterprise IT departments. If you can use a modern web application, you can use aicente. Most new users are productive with their first tool within the same business day they sign up, and fully onboarded across multiple tools within a week.
Trusted Across Industries
Restaurants & Food Service: Restaurant owners and multi-location food businesses use Action Menu to build digital menus with QR-code ordering, Action CRM to manage supplier relationships, Bulk Email to send weekly specials, and Action Payroll to manage staff wages — all without leaving aicente.
Real Estate & Property: Real estate agents use Action Realestate and Action House to list properties, Action Sign for offer documents and listing agreements, Action CRM to nurture buyer and seller leads, Action Calendar for showing appointments, and Action Proposal for buyer representation agreements.
Healthcare & Medical: Clinics and healthcare providers use Action Patient to manage patient records and appointment booking, Action Calendar for scheduling consultations, Action Sign for patient consent forms, and Action Compliance to maintain documentation standards required for regulatory audits.
Creative & Beauty Services: Tattoo studios, salons, and creative agencies use Action Design for client bookings and portfolio management, Action Calendar for appointment scheduling, Action Sign for client consent and service agreements, and Action Invoicing for session billing.
Construction & Trades: Contractors and trade businesses use Action Workshop to manage service listings and crew availability, Action Proposal for project quotes, Action Sign for contracts, Action Schedule for workforce management, and Action Invoicing for progress billing on long-running projects.
Transportation & Logistics: Limo companies, courier fleets, and delivery businesses use Action Limo or Action Dispatcher for bookings and route management, Action CRM for corporate account management, Action Sign for service agreements, and Action Invoicing for recurring billing.
About the aicente Platform
Is aicente suitable for businesses outside the US?
Yes. aicente supports multiple currencies, multiple languages, and international address formats across all tools. Action Payments supports over 30 currencies. The e-signature system complies with both US (ESIGN) and European (eIDAS) electronic signature regulations. Businesses from Turkey, UAE, UK, Canada, Australia, and across Europe and Asia use aicente daily for their operations.
Can I try aicente before committing to a paid plan?
Yes. The aicente free plan gives you access to all core tools with generous usage limits — no credit card required. Free plan users can manage up to 500 contacts in Action CRM, send up to 3 proposals per month, schedule unlimited calendar events, and use the AI writing assistant for up to 50 requests per month. Upgrading to Pro removes all usage limits and unlocks advanced AI features.
How does aicente handle my data if I decide to cancel?
Your data belongs to you. Before cancelling, you can export all data from aicente — contacts, deals, proposals, documents, invoices, and e-signature records — in standard formats including CSV, PDF, and JSON. After cancellation, your data is retained for 90 days in case you change your mind, then permanently and securely deleted from aicente servers per our data retention policy.
Is there an API for integrating aicente with other tools I already use?
Yes. The aicente REST API gives developers programmatic access to contacts, deals, proposals, events, invoices, e-signatures, and more. Webhooks notify your external systems of key events in real time — new contact created, proposal signed, payment received, appointment booked. Full API documentation with code examples is available at aicente.com/docs/api. Native Zapier and Make integrations are also available for no-code connections.
How does aicente compare to Salesforce, HubSpot, or other all-in-one platforms?
Unlike platforms built by acquiring separate products and bolting them together, every aicente tool is purpose-built to share data from the ground up. Information flows naturally between tools with no integration setup, the interface is consistent across all tools, and you never hit data-silo walls. One login, one subscription, one support team covers your entire tech stack. For small to mid-size businesses, aicente typically replaces 8-12 separate software subscriptions.
What kind of support does aicente provide?
All paid plans include email support with a response time commitment of 24 hours or less. Pro and Business plans include live chat support during business hours. Enterprise plans include a dedicated account manager and priority escalation. The aicente Help Center contains step-by-step guides for every feature, and the community forum lets users share workflows and best practices with thousands of other aicente businesses.
Get Started with aicente Today
Join thousands of businesses that have consolidated their operations onto the aicente platform. Sign up free at aicente.com — no credit card required, no implementation project, no training sessions. Your first tool is live within minutes, your whole operation is connected within days. When you are ready to grow, every aicente tool is already waiting for you in the same workspace, with the same data, under the same subscription. Build, fund, and deploy your business with AI on your side.