36 lines
1.3 KiB
TypeScript
36 lines
1.3 KiB
TypeScript
import { Navbar } from "@/components/aiero/Navbar";
|
|
import { PageTitleBanner } from "@/components/shared/PageTitleBanner";
|
|
import { MarqueeStrip } from "@/components/aiero/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";
|
|
|
|
export const metadata = {
|
|
title: "Services - tenext",
|
|
};
|
|
|
|
export default function ServicesPage() {
|
|
return (
|
|
<>
|
|
<Navbar />
|
|
<main className="min-h-screen bg-tenext-dark">
|
|
<PageTitleBanner
|
|
title="Services Page"
|
|
breadcrumbs={[{ label: "Services Page" }]}
|
|
/>
|
|
<ServiceCardsGrid />
|
|
<MarqueeStrip text="/ Neural Networks in shaping the future of technology." />
|
|
<ServiceFeaturesSection />
|
|
<TestimonialsSection />
|
|
<PricingSection />
|
|
<PartnerLogosSection />
|
|
<ContactFormSection />
|
|
</main>
|
|
</>
|
|
);
|
|
}
|