arrenge the home page order

This commit is contained in:
2026-07-24 15:28:46 +05:30
parent a4328a791a
commit 4a0adea793
37 changed files with 2532 additions and 1564 deletions

View File

@@ -1,15 +1,15 @@
import type { Metadata } from "next";
import { PremiumPageShell } from "@/components/common/PremiumPageShell";
import { Hero } from "@/components/home/Hero";
import { WhyNearleDifferent } from "@/components/home/WhyNearleDifferent";
import { AICommerceIntro } from "@/components/home/AICommerceIntro";
import { VoiceCommerceExperience } from "@/components/home/VoiceCommerceExperience";
import { StoreJourney } from "@/components/home/experience/StoreJourney";
import { ServiceCategories } from "@/components/home/ServiceCategories";
import { WhyNearle } from "@/components/home/WhyNearle";
import { HowItWorks } from "@/components/home/HowItWorks";
import { HyperlocalFeatures } from "@/components/home/HyperlocalFeatures";
import { BusinessSection } from "@/components/home/BusinessSection";
import { WhyAICommerceWins } from "@/components/home/WhyAICommerceWins";
import { AICommerceTeaser } from "@/components/home/AICommerceTeaser";
import { StoreQRSection } from "@/components/home/StoreQRSection";
export const metadata: Metadata = {
@@ -29,15 +29,15 @@ export default function HomePage() {
return (
<PremiumPageShell>
<Hero />
<WhyAICommerceWins />
<AICommerceIntro />
<VoiceCommerceExperience />
<StoreJourney />
<ServiceCategories />
<WhyNearle />
<WhyNearleDifferent />
<HowItWorks />
<HyperlocalFeatures />
<ServiceCategories />
<BusinessSection />
<WhyAICommerceWins />
<AICommerceTeaser />
<StoreQRSection />
</PremiumPageShell>
);