Files
tenext-next/app/services/page.tsx
2026-06-18 16:32:31 +05:30

33 lines
1.2 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 - Aiero",
};
export default function ServicesPage() {
return (
<>
<Navbar />
<main className="min-h-screen bg-aiero-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>
</>
);
}