'use client';
import React from 'react';
import Link from 'next/link';
import Image from 'next/image';
import { useReveal } from '@/hooks/useReveal';
import GSAPAnimator from '@/components/GSAPAnimator';
import ScrollStack, { ScrollStackItem } from '@/components/ScrollStack';
function Reveal({ children, delay = 0 }: { children: React.ReactNode; delay?: number }) {
const { ref, visible } = useReveal();
return (
{children}
);
}
const VALUES = [
{ n: '01', title: 'Intelligence first', desc: 'Every product decision starts with data, not instinct.' },
{ n: '02', title: 'Merchant obsessed', desc: 'We build for the store owner who works 14-hour days.' },
{ n: '03', title: 'Radical transparency', desc: 'No black boxes. Our AI explains every recommendation.' },
{ n: '04', title: 'Build to last', desc: 'We optimise for long-term impact, not vanity metrics.' },
];
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', '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 Lyts 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 Lyts', 'Game Based Offers', 'Offline Redemption'],
},
];
export default function MeetTheCrewPage() {
return (
{/* ── HERO ── */}
{/* Background photo */}
{/* Accent blobs */}
{/* Big ghost text */}
LOYALY
Meet the Agents.
The builders, thinkers, and retail obsessives behind Loyaly, working every day to make offline shopping as smart as online.
{/* ── VALUES ── */}
How We Work
What we believe.
{VALUES.map((v, i) => (
{v.n}
{v.title}
{v.desc}
))}
{/* ── OUR PRODUCTS ── */}
Meet the Agents
Four agents. One AI.
Behavision, SpendSense, Dyscount, and Identiq, each 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) => (
{/* Accent glow blob */}
{/* Left — identity + description */}
{p.n}{p.subtitle}
{p.title}
{p.desc}
{p.tags.map((tag) => (
{tag}
))}
{/* Right — metric hero + capabilities */}
{p.metric.val}
{p.metric.lbl}
{p.capabilities.map((cap) => (
{cap}
))}
))}
{/* ── CULTURE CLOSE ── */}
"We're not just building a product. We're redefining retail."