import { Navbar } from "@/components/sections/Navbar";
import { ContactFormSection } from "@/components/shared/ContactFormSection";
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",
description:
"Tenext Technologies helps enterprises turn digital transformation into predictable business outcomes across cloud, data, AI, and product engineering.",
};
export default function AboutPage() {
return (
<>
{/* 1 — Hero */}
{/* 2 — Who we are */}
{/* 3 — Our story */}
{/* 4 — Mission / Vision / Values */}
{/* 5 — Why Tenext */}
{/* 6 — Capabilities */}
{/* 7 — Industries */}
{/* 8 — Delivery model */}
{/* 9 — Practice teams */}
{/* 10 — Technology ecosystem */}
{/* 11 — Enterprise trust */}
{/* 12 — Final CTA */}
{/* 13 — Contact */}
>
);
}