tenext redesign
This commit is contained in:
34
app/industries/page.tsx
Normal file
34
app/industries/page.tsx
Normal file
@@ -0,0 +1,34 @@
|
||||
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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user