35 lines
1.2 KiB
TypeScript
35 lines
1.2 KiB
TypeScript
import { Navbar } from "@/components/sections/Navbar";
|
|
import { PageTitleBanner } from "@/components/shared/PageTitleBanner";
|
|
import { MarqueeStrip } from "@/components/sections/MarqueeStrip";
|
|
import { AnchoredCardGrid } from "@/components/shared/AnchoredCardGrid";
|
|
import { PreFooterCTA } from "@/components/shared/PreFooterCTA";
|
|
import { industries } from "@/data/site-pages";
|
|
|
|
export const metadata = {
|
|
title: "Industries",
|
|
description:
|
|
"Enterprise technology solutions for retail, financial services, healthcare, manufacturing, and education.",
|
|
};
|
|
|
|
export default function IndustriesPage() {
|
|
return (
|
|
<>
|
|
<Navbar />
|
|
<main className="bg-white">
|
|
<PageTitleBanner
|
|
title="Industries"
|
|
breadcrumbs={[{ label: "Home", href: "/" }, { label: "Industries" }]}
|
|
/>
|
|
<AnchoredCardGrid
|
|
tag="[ industries ]"
|
|
title="Depth across the industries you operate in"
|
|
description="We bring domain understanding and engineering rigor to the sectors where Tenext delivers transformation."
|
|
items={industries}
|
|
/>
|
|
<MarqueeStrip text="/ Building the digital backbone for enterprises across industries." />
|
|
<PreFooterCTA />
|
|
</main>
|
|
</>
|
|
);
|
|
}
|