tenext redesign

This commit is contained in:
2026-08-03 14:42:01 +05:30
parent 1e3f225bed
commit 6625bb9018
78 changed files with 2798 additions and 859 deletions

View File

@@ -1,16 +1,18 @@
import { Navbar } from "@/components/aiero/Navbar";
import { Navbar } from "@/components/sections/Navbar";
import { PageTitleBanner } from "@/components/shared/PageTitleBanner";
import { MarqueeStrip } from "@/components/aiero/MarqueeStrip";
import { MarqueeStrip } from "@/components/sections/MarqueeStrip";
import { ContactFormSection } from "@/components/shared/ContactFormSection";
import { PartnerLogosSection } from "@/components/shared/PartnerLogosSection";
import { ServiceCardsGrid } from "@/components/aiero/services/ServiceCardsGrid";
import { ServiceFeaturesSection } from "@/components/aiero/services/ServiceFeaturesSection";
import { TestimonialsSection } from "@/components/aiero/services/TestimonialsSection";
import { PricingSection } from "@/components/aiero/services/PricingSection";
import { ServiceCardsGrid } from "@/components/sections/services/ServiceCardsGrid";
import { ServiceFeaturesSection } from "@/components/sections/services/ServiceFeaturesSection";
import { DeliveryPrinciplesSection } from "@/components/sections/services/DeliveryPrinciplesSection";
import { EngagementModelsSection } from "@/components/sections/services/EngagementModelsSection";
export const metadata = {
title: "Services - tenext",
title: "Services",
description:
"Technology engineering, cloud, AI & data science, enterprise mobility, and digital commerce services for enterprises.",
};
export default function ServicesPage() {
@@ -19,14 +21,14 @@ export default function ServicesPage() {
<Navbar />
<main className="min-h-screen bg-tenext-dark">
<PageTitleBanner
title="Services Page"
breadcrumbs={[{ label: "Services Page" }]}
title="Services"
breadcrumbs={[{ label: "Home", href: "/" }, { label: "Services" }]}
/>
<ServiceCardsGrid />
<MarqueeStrip text="/ Neural Networks in shaping the future of technology." />
<MarqueeStrip text="/ Building the digital backbone for enterprises across industries." />
<ServiceFeaturesSection />
<TestimonialsSection />
<PricingSection />
<DeliveryPrinciplesSection />
<EngagementModelsSection />
<PartnerLogosSection />
<ContactFormSection />
</main>