tenext redesign
This commit is contained in:
@@ -1,30 +1,101 @@
|
||||
import { Navbar } from "@/components/aiero/Navbar";
|
||||
import { PageTitleBanner } from "@/components/shared/PageTitleBanner";
|
||||
import { MarqueeStrip } from "@/components/aiero/MarqueeStrip";
|
||||
import { Navbar } from "@/components/sections/Navbar";
|
||||
import { ContactFormSection } from "@/components/shared/ContactFormSection";
|
||||
import { AboutIntroSection } from "@/components/aiero/about/AboutIntroSection";
|
||||
import { MissionSection } from "@/components/aiero/about/MissionSection";
|
||||
import { PartnerLogosSection } from "@/components/shared/PartnerLogosSection";
|
||||
import { TeamSection } from "@/components/aiero/about/TeamSection";
|
||||
import { AboutHero } from "@/components/sections/about/AboutHero";
|
||||
import { WhoWeAre } from "@/components/sections/about/WhoWeAre";
|
||||
import { OurStory } from "@/components/sections/about/OurStory";
|
||||
import { IconCardGrid } from "@/components/sections/about/IconCardGrid";
|
||||
import { DeliveryModel } from "@/components/sections/about/DeliveryModel";
|
||||
import { AboutPracticeTeams } from "@/components/sections/about/AboutPracticeTeams";
|
||||
import { AboutIndustries } from "@/components/sections/about/AboutIndustries";
|
||||
import { AboutCTA } from "@/components/sections/about/AboutCTA";
|
||||
import {
|
||||
pillars,
|
||||
whyTenext,
|
||||
capabilities,
|
||||
techEcosystem,
|
||||
trustPrinciples,
|
||||
} from "@/data/about";
|
||||
|
||||
export const metadata = {
|
||||
title: "About us - tenext",
|
||||
title: "About Us",
|
||||
description:
|
||||
"Tenext Technologies helps enterprises turn digital transformation into predictable business outcomes across cloud, data, AI, and product engineering.",
|
||||
};
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<>
|
||||
<Navbar />
|
||||
<main className="min-h-screen bg-tenext-dark">
|
||||
<PageTitleBanner
|
||||
title="About us"
|
||||
breadcrumbs={[{ label: "About us" }]}
|
||||
<main className="bg-white">
|
||||
{/* 1 — Hero */}
|
||||
<AboutHero />
|
||||
|
||||
{/* 2 — Who we are */}
|
||||
<WhoWeAre />
|
||||
|
||||
{/* 3 — Our story */}
|
||||
<OurStory />
|
||||
|
||||
{/* 4 — Mission / Vision / Values */}
|
||||
<IconCardGrid
|
||||
eyebrow="what drives us"
|
||||
title="Mission, vision, and the values behind our work"
|
||||
items={pillars}
|
||||
columns={3}
|
||||
theme="dark"
|
||||
/>
|
||||
<AboutIntroSection />
|
||||
<MarqueeStrip text="/ Neural Networks in shaping the future of technology." />
|
||||
<MissionSection />
|
||||
<PartnerLogosSection />
|
||||
<TeamSection />
|
||||
|
||||
{/* 5 — Why Tenext */}
|
||||
<IconCardGrid
|
||||
eyebrow="why tenext"
|
||||
title="What sets our engineering apart"
|
||||
items={whyTenext}
|
||||
columns={3}
|
||||
theme="light"
|
||||
/>
|
||||
|
||||
{/* 6 — Capabilities */}
|
||||
<IconCardGrid
|
||||
eyebrow="capabilities"
|
||||
title="Engineering capabilities across the enterprise"
|
||||
items={capabilities}
|
||||
columns={3}
|
||||
theme="surface"
|
||||
/>
|
||||
|
||||
{/* 7 — Industries */}
|
||||
<AboutIndustries />
|
||||
|
||||
{/* 8 — Delivery model */}
|
||||
<DeliveryModel />
|
||||
|
||||
{/* 9 — Practice teams */}
|
||||
<AboutPracticeTeams />
|
||||
|
||||
{/* 10 — Technology ecosystem */}
|
||||
<IconCardGrid
|
||||
eyebrow="technology ecosystem"
|
||||
title="The technologies we build with"
|
||||
description="We work across the modern enterprise stack — matched to your landscape, not to a single vendor."
|
||||
items={techEcosystem}
|
||||
columns={4}
|
||||
theme="surface"
|
||||
/>
|
||||
|
||||
{/* 11 — Enterprise trust */}
|
||||
<IconCardGrid
|
||||
eyebrow="enterprise trust"
|
||||
title="Why enterprises rely on Tenext"
|
||||
description="Not testimonials — the principles, standards, and culture that make delivery dependable."
|
||||
items={trustPrinciples}
|
||||
columns={4}
|
||||
theme="dark"
|
||||
/>
|
||||
|
||||
{/* 12 — Final CTA */}
|
||||
<AboutCTA />
|
||||
|
||||
{/* 13 — Contact */}
|
||||
<ContactFormSection />
|
||||
</main>
|
||||
</>
|
||||
|
||||
Reference in New Issue
Block a user