'use client'; import React, { useState } from 'react'; import Link from 'next/link'; import Image from 'next/image'; import GSAPAnimator from '@/components/GSAPAnimator'; import { useReveal } from '@/hooks/useReveal'; import ScrollStack, { ScrollStackItem } from '@/components/ScrollStack'; function RevealBlock({ children, delay = 0 }: { children: React.ReactNode; delay?: number }) { const { ref, visible } = useReveal(); return (
{children}
); } const PRODUCTS = [ { n: '01', title: 'Behavision', subtitle: 'AI Powered Footfall Analytics', color: '#f4be28', desc: 'AI powered footfall analytics and behavioral intelligence for physical retail. Behavision turns every camera and sensor you already have into a live map of how customers move, where they linger, and what makes them walk away, so store layout and staffing decisions are based on evidence, not guesswork.', capabilities: [ 'Real-time footfall counting, accurate to 98% across every entry point', 'Dwell-time and zone heatmaps that show exactly where attention concentrates', 'Entry-to-purchase funnel tracking that flags where shoppers drop off', ], metric: { val: '3.2×', lbl: 'conversion uplift' }, tags: ['Footfall Tracking', 'Heatmaps', 'Behavior Analysis'], }, { n: '02', title: 'SpendSense', subtitle: 'Customer Spending Intelligence', color: '#10B981', desc: 'Deep, continuously updating intelligence on how your customers spend. SpendSense studies basket size, purchase frequency, and category preferences across every visit, surfacing the high-value segments and the early warning signs of churn well before a customer stops coming back.', capabilities: [ 'Automatic customer segmentation by spend, frequency, and loyalty tier', 'Predictive churn scoring that flags at-risk high-value shoppers early', 'Revenue opportunity alerts triggered by shifting basket-size trends', ], metric: { val: '68%', lbl: 'retention improvement' }, tags: ['Spending Trends', 'Revenue Analytics', 'Customer Value'], }, { n: '03', title: 'Dyscount', subtitle: 'Smart Discount Engine', color: '#EF4444', desc: 'A discount engine that treats margin as a budget, not an afterthought. Dyscount decides who gets an offer, how deep it goes, and when it fires, targeting the customers most likely to convert while capping every discount so promotions never quietly eat into profit.', capabilities: [ 'Dynamic offer targeting based on real-time purchase intent signals', 'Margin-safe discount caps enforced per product, category, or campaign', 'A/B tested offer formats that keep conversion up without overspending', ], metric: { val: '41%', lbl: 'discount waste reduced' }, tags: ['Smart Discounts', 'Offer Automation', 'Margin Protection'], }, { n: '04', title: 'Identiq', subtitle: 'Consumer Loyalty Platform', color: '#f4be28', desc: 'The consumer-facing app that closes the loop. Identiq turns daily logins, walking challenges, and quick mini-games into LYTs, Loyaly’s reward tokens, redeemable instantly at any partner store, so every idle moment on a phone becomes a reason to walk into a real one.', capabilities: [ 'Daily login and step-challenge rewards that build a lasting habit loop', 'Game based offers like Spin Wheel, Scratch Card, and Maze Challenge', 'Instant offline redemption at any partner store, no card required', ], metric: { val: '50K+', lbl: 'active shoppers' }, tags: ['Daily Rewards', 'Game Based Offers', 'Offline Redemption'], }, ]; const CAPS = [ { n: '01', title: 'Merchant Campaign Platform', color: '#f4be28', desc: 'Register your store, upload products and inventory, then launch interactive promotional campaigns in minutes. Define maximum discounts per product and track performance in real time.', metrics: [{ val: '5+', lbl: 'Game formats' }, { val: '1-click', lbl: 'Campaign setup' }], }, { n: '02', title: 'Game Based Discount Engine', color: '#a78bfa', desc: 'Select a product, choose a game (Maze, Spin Wheel, Scratch Card, or Match Master) and set a maximum discount. Customers play once and discover their reward only after completing the game.', metrics: [{ val: '4×', lbl: 'Engagement lift' }, { val: '100%', lbl: 'Margin controlled' }], }, { n: '03', title: 'Smart Coupon System', color: '#34d399', desc: 'Generate daily surprise coupons through the Battery Challenge and other activities. Offer flat discounts, BOGO, percentage-off deals, festival specials, and brand promotions, fresh every day.', metrics: [{ val: '6', lbl: 'Coupon types' }, { val: 'Daily', lbl: 'Fresh surprises' }], }, { n: '04', title: 'Footfall & Campaign Analytics', color: '#f97316', desc: 'Track which campaigns drove store visits, measure conversion rates, monitor repeat footfall, and optimize your promotional budget with a real-time analytics dashboard.', metrics: [{ val: '98%', lbl: 'Count accuracy' }, { val: '<9ms', lbl: 'Real-time latency' }], }, ]; export default function SolutionsPage() { const [hovered, setHovered] = useState(null); return (
{/* ── HERO ── */}
{/* Background photo */}
{/* Accent blobs */}
{/* Animated rings */} {[600, 900, 1200].map((s, i) => (
))}

Built for
Modern
Retail Growth.

Instead of waiting for customers to walk in, create exciting reasons for them to come, with game based campaigns, smart coupons, and a loyalty ecosystem that rewards every visit.

Explore Solutions → Book Demo
{/* ── CAPABILITIES ── */}
Capabilities

Four tools.
One merchant platform.

Every tool works independently and amplifies the others, giving merchants a complete system to attract, engage, and retain customers.

{CAPS.map((cap, i) => (
setHovered(i)} onMouseLeave={() => setHovered(null)} className="sp-cap-row" style={{ display: 'grid', gridTemplateColumns: '80px 1fr 1fr auto', alignItems: 'center', gap: '4vw', padding: '40px 0', borderBottom: '1px solid rgba(0,0,0,0.07)', cursor: 'default', transition: 'all 0.3s ease', }} > {cap.n}

{cap.title}

{cap.desc}

{cap.metrics.map((m, j) => (
{m.val}
{m.lbl}
))}
))}
{/* ── OUR PRODUCTS ── */}
Our Products

Four products.
One ecosystem.

Each product solves a distinct part of the retail journey, and together they form one connected platform, from footfall to spend to loyalty.

{PRODUCTS.map((p, i) => (
{/* Left — identity + description */}
{p.n} {p.subtitle}

{p.title}

{p.desc}

{p.tags.map((tag) => ( {tag} ))}
{/* Right — metric + capabilities */}
{p.metric.val}
{p.metric.lbl}
{p.capabilities.map((cap) => (
{cap}
))}
))}
{/* ── WHY IT MATTERS ── */}
"Every digital interaction should lead to a{' '} meaningful in-store experience."

Loyaly.ai, 2025

{/* ── FINAL CTA ── */}

See every solution working together.

Get a tailored walkthrough of how Loyaly.ai's merchant platform, game campaigns, and coupon engine fit your specific retail format.

Book Demo → Explore Solutions
{[ { v: '10K+', l: 'Partner stores' }, { v: '50K+', l: 'Active users' }, { v: '98%', l: 'Uptime SLA' }, { v: '<9ms', l: 'Response time' }, ].map((s, i) => (
{s.v}
{s.l}
))}
); }