312 lines
11 KiB
TypeScript
312 lines
11 KiB
TypeScript
// ─── About page content ──────────────────────────────────────────────
|
|
// Single source of truth for the redesigned About page. All copy is
|
|
// Tenext Technologies content — no invented history, dates, names,
|
|
// clients, awards, or statistics. Icons are referenced by string key
|
|
// and resolved in components/shared/Icon.tsx.
|
|
// ─────────────────────────────────────────────────────────────────────
|
|
|
|
export interface IconCard {
|
|
icon: string;
|
|
title: string;
|
|
description: string;
|
|
}
|
|
|
|
export const aboutHero = {
|
|
eyebrow: "About Tenext",
|
|
title: "Enterprise technology, engineered for outcomes",
|
|
paragraph:
|
|
"Tenext Technologies helps enterprises turn digital transformation into predictable business results — combining engineering depth with a diagnostic, outcome-first approach across cloud, data, AI, and product engineering.",
|
|
primaryCta: { label: "Talk to an expert", href: "/contacts" },
|
|
secondaryCta: { label: "Explore our services", href: "/services" },
|
|
};
|
|
|
|
// 2 — Who we are (two-column)
|
|
export const whoWeAre = {
|
|
eyebrow: "who we are",
|
|
title: "A partner for enterprise-grade digital transformation",
|
|
lead: "We engineer, migrate, and scale the platforms enterprises run on — and we integrate with the systems and processes already in place rather than forcing a wholesale replacement.",
|
|
points: [
|
|
{
|
|
icon: "layers",
|
|
title: "What we do",
|
|
description:
|
|
"Full-stack engineering, cloud and platform modernization, data and applied AI, enterprise mobility, and digital commerce.",
|
|
},
|
|
{
|
|
icon: "building",
|
|
title: "Who we serve",
|
|
description:
|
|
"Enterprises across retail, financial services, healthcare, manufacturing, and education navigating complex transformation.",
|
|
},
|
|
{
|
|
icon: "target",
|
|
title: "Why we exist",
|
|
description:
|
|
"To take the uncertainty out of enterprise technology — delivering measurable outcomes, lower total cost of ownership, and faster time to value.",
|
|
},
|
|
],
|
|
};
|
|
|
|
// 3 — Our story (narrative, no invented history/dates)
|
|
export const ourStory = {
|
|
eyebrow: "our story",
|
|
title: "Built around engineering, focused on business outcomes",
|
|
paragraphs: [
|
|
"Digital transformation is imperative for every business — from the small to the enterprise — and it now sits at the top of the strategy agenda. Tenext exists to make that transformation actually deliver.",
|
|
"Our work spans product engineering, cloud modernization, data platforms, and applied AI. We treat technology as a means to a business result, not an end in itself — every architecture decision is weighed on the value and the run cost it creates over its lifetime.",
|
|
"Because the team that designs a system also builds and supports it, accountability never changes hands mid-programme. That continuity is how we keep transformation predictable from first diagnostic to long-term support.",
|
|
],
|
|
};
|
|
|
|
// 4 — Mission / Vision / Values
|
|
export const pillars: IconCard[] = [
|
|
{
|
|
icon: "compass",
|
|
title: "Mission",
|
|
description:
|
|
"To deliver predictable outcomes from every technology investment — diagnosing before we build and holding ourselves to results enterprises can measure.",
|
|
},
|
|
{
|
|
icon: "eye",
|
|
title: "Vision",
|
|
description:
|
|
"To be the engineering partner enterprises trust to modernize with confidence, at the lowest total cost of ownership and the fastest time to value.",
|
|
},
|
|
{
|
|
icon: "sparkles",
|
|
title: "Values",
|
|
description:
|
|
"Outcome-first thinking, engineering ownership, transparency, and security by default — applied on every engagement, without exception.",
|
|
},
|
|
];
|
|
|
|
// 5 — Why Tenext (differentiators, specific not generic)
|
|
export const whyTenext: IconCard[] = [
|
|
{
|
|
icon: "target",
|
|
title: "Predictable delivery",
|
|
description:
|
|
"Outcome-first scoping and transparent milestones, so progress and cost stay visible from day one.",
|
|
},
|
|
{
|
|
icon: "code",
|
|
title: "Enterprise engineering",
|
|
description:
|
|
"Full-stack teams that design, build, and support production-grade platforms at scale.",
|
|
},
|
|
{
|
|
icon: "cloud",
|
|
title: "Cloud modernization",
|
|
description:
|
|
"Migration and platform engineering weighed on lifetime run cost and resilience, not just build speed.",
|
|
},
|
|
{
|
|
icon: "cpu",
|
|
title: "AI & data transformation",
|
|
description:
|
|
"Applied AI and governed data platforms that turn enterprise data into automation and insight.",
|
|
},
|
|
{
|
|
icon: "handshake",
|
|
title: "Business-first approach",
|
|
description:
|
|
"Every engagement starts from the business outcome and the measure that proves it.",
|
|
},
|
|
{
|
|
icon: "shield",
|
|
title: "Security & governance",
|
|
description:
|
|
"Access control, data governance, and compliance-ready handling designed in from the first sprint.",
|
|
},
|
|
];
|
|
|
|
// 6 — Capabilities
|
|
export const capabilities: IconCard[] = [
|
|
{
|
|
icon: "code",
|
|
title: "Technology Engineering",
|
|
description:
|
|
"Architecture, development, and modernization of enterprise applications built to scale.",
|
|
},
|
|
{
|
|
icon: "cloud",
|
|
title: "Cloud & Enterprise Platforms",
|
|
description:
|
|
"Cloud migration, platform engineering, and DevOps that keep systems reliable and efficient.",
|
|
},
|
|
{
|
|
icon: "cpu",
|
|
title: "AI & Data Science",
|
|
description:
|
|
"Data platforms, analytics, and applied AI that turn data into decision-ready insight.",
|
|
},
|
|
{
|
|
icon: "mobile",
|
|
title: "Enterprise Mobility",
|
|
description:
|
|
"Mobile and field applications that extend core systems to your workforce and customers.",
|
|
},
|
|
{
|
|
icon: "boxes",
|
|
title: "Digital Commerce",
|
|
description:
|
|
"Commerce platforms and experiences that unify online and offline channels.",
|
|
},
|
|
{
|
|
icon: "workflow",
|
|
title: "DevOps & Automation",
|
|
description:
|
|
"CI/CD, automation, and platform reliability that shorten release cycles and reduce cost.",
|
|
},
|
|
];
|
|
|
|
// 7 — Industry icon map (industry content lives in data/site-pages.ts)
|
|
export const industryIcons: Record<string, string> = {
|
|
retail: "retail",
|
|
"financial-services": "landmark",
|
|
healthcare: "health",
|
|
manufacturing: "factory",
|
|
education: "education",
|
|
};
|
|
|
|
// 8 — Delivery model
|
|
export const deliverySteps: IconCard[] = [
|
|
{
|
|
icon: "discover",
|
|
title: "Discover",
|
|
description: "Assess systems, processes, and goals to find where value is highest.",
|
|
},
|
|
{
|
|
icon: "design",
|
|
title: "Design",
|
|
description: "Architect a solution that fits the existing landscape and the outcome.",
|
|
},
|
|
{
|
|
icon: "build",
|
|
title: "Build",
|
|
description: "Engineer, integrate, and test against the measures agreed up front.",
|
|
},
|
|
{
|
|
icon: "modernize",
|
|
title: "Modernize",
|
|
description: "Replace only what blocks progress; integrate with what already runs.",
|
|
},
|
|
{
|
|
icon: "scale",
|
|
title: "Scale",
|
|
description: "Deploy with confidence and grow capability as the roadmap evolves.",
|
|
},
|
|
{
|
|
icon: "support",
|
|
title: "Support",
|
|
description: "Monitor, optimize, and manage platforms long after go-live.",
|
|
},
|
|
];
|
|
|
|
// 9 — Practice teams (unique gradient + icon each; no photos, no invented people)
|
|
export interface PracticeTeamCard {
|
|
name: string;
|
|
focus: string;
|
|
description: string;
|
|
icon: string;
|
|
gradient: string;
|
|
}
|
|
|
|
export const practiceTeamCards: PracticeTeamCard[] = [
|
|
{
|
|
name: "Technology Engineering",
|
|
focus: "Architecture & full-stack build",
|
|
description:
|
|
"Designs and builds enterprise applications engineered to scale.",
|
|
icon: "code",
|
|
gradient: "from-[#343F78] to-[#2C84C8]",
|
|
},
|
|
{
|
|
name: "Cloud & Platforms",
|
|
focus: "Migration, DevOps & reliability",
|
|
description:
|
|
"Modernizes infrastructure and keeps platforms reliable and efficient.",
|
|
icon: "cloud",
|
|
gradient: "from-[#2C84C8] to-[#45D0BD]",
|
|
},
|
|
{
|
|
name: "AI & Data Science",
|
|
focus: "Data platforms & applied AI",
|
|
description:
|
|
"Turns enterprise data into automation and decision-ready insight.",
|
|
icon: "cpu",
|
|
gradient: "from-[#6766C8] to-[#8258C8]",
|
|
},
|
|
{
|
|
name: "Enterprise Mobility",
|
|
focus: "Mobile & field applications",
|
|
description:
|
|
"Extends core systems to the workforce and customers wherever they operate.",
|
|
icon: "mobile",
|
|
gradient: "from-[#8258C8] to-[#AC8DE0]",
|
|
},
|
|
{
|
|
name: "Digital Commerce",
|
|
focus: "Commerce & customer experience",
|
|
description: "Unifies online and offline channels on a scalable foundation.",
|
|
icon: "boxes",
|
|
gradient: "from-[#56619E] to-[#343F78]",
|
|
},
|
|
{
|
|
name: "Quality & Reliability",
|
|
focus: "Security, governance & support",
|
|
description:
|
|
"Builds in security and keeps platforms performing after launch.",
|
|
icon: "shield",
|
|
gradient: "from-[#44B6E9] to-[#6766C8]",
|
|
},
|
|
];
|
|
|
|
// 10 — Technology ecosystem (categories, not vendor logos)
|
|
export const techEcosystem: IconCard[] = [
|
|
{ icon: "cloud", title: "Cloud", description: "Cloud platforms & infrastructure" },
|
|
{ icon: "cpu", title: "AI & ML", description: "Applied AI and machine learning" },
|
|
{ icon: "database", title: "Data", description: "Data platforms & analytics" },
|
|
{ icon: "code", title: "Web", description: "Modern web application stacks" },
|
|
{ icon: "mobile", title: "Mobile", description: "Native and cross-platform apps" },
|
|
{ icon: "building", title: "Enterprise", description: "Enterprise systems & integration" },
|
|
{ icon: "devops", title: "DevOps", description: "CI/CD, automation & reliability" },
|
|
{ icon: "shield", title: "Security", description: "Governance & compliance-ready" },
|
|
];
|
|
|
|
// 11 — Enterprise trust (no testimonials)
|
|
export const trustPrinciples: IconCard[] = [
|
|
{
|
|
icon: "target",
|
|
title: "Delivery principles",
|
|
description:
|
|
"Outcome-first scoping, milestone-based delivery, and progress that stays visible throughout.",
|
|
},
|
|
{
|
|
icon: "badge",
|
|
title: "Quality standards",
|
|
description:
|
|
"Secure architecture, tested code, and compliance-ready data handling on every engagement.",
|
|
},
|
|
{
|
|
icon: "users",
|
|
title: "Engineering culture",
|
|
description:
|
|
"The team that designs a system builds and supports it — ownership never changes hands.",
|
|
},
|
|
{
|
|
icon: "handshake",
|
|
title: "Long-term partnership",
|
|
description:
|
|
"Knowledge transfer and managed support keep you in control long after go-live.",
|
|
},
|
|
];
|
|
|
|
export const aboutCta = {
|
|
title: "Ready to engineer your next transformation?",
|
|
paragraph:
|
|
"Tell us about the systems you run and the outcome you need. We'll come back to you within one business day.",
|
|
primaryCta: { label: "Talk to an expert", href: "/contacts" },
|
|
secondaryCta: { label: "View our services", href: "/services" },
|
|
};
|