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