Skip to content

Commit d415139

Browse files
committed
iterate
1 parent 8761296 commit d415139

45 files changed

Lines changed: 299 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

app/(states)/andhra-pradesh/[city]/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { Metadata } from 'next'
2+
import { ProductsSection } from '@/components/ProductsSection'
23
import { notFound } from 'next/navigation'
34
import Link from 'next/link'
45
import { getCityInfoFromSlugs, getCityCoordinates, getRelatedCities, slugify } from '@/lib/cityData'
@@ -223,6 +224,7 @@ export default async function CityPage({ params }: CityPageProps) {
223224
</Link>
224225
</div>
225226
</section>
227+
<ProductsSection />
226228
</div>
227229
)
228230
}

app/(states)/andhra-pradesh/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import Link from 'next/link'
2+
import { ProductsSection } from '@/components/ProductsSection'
23
import type { Metadata } from 'next'
34
import { generatePageMetadata, generateBreadcrumbSchema } from '@/lib/seo-utils'
45
import StateNavigator from '@/components/seo/StateNavigator'
@@ -144,6 +145,7 @@ export default function AndhraPradeshPage() {
144145
</div>
145146
</div>
146147
</div>
148+
<ProductsSection />
147149
</div>
148150
)
149151
}

app/(states)/assam/[city]/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { Metadata } from 'next'
2+
import { ProductsSection } from '@/components/ProductsSection'
23
import { notFound } from 'next/navigation'
34
import Link from 'next/link'
45
import { getCityInfoFromSlugs, getCityCoordinates, getRelatedCities, slugify } from '@/lib/cityData'
@@ -223,6 +224,7 @@ export default async function CityPage({ params }: CityPageProps) {
223224
</Link>
224225
</div>
225226
</section>
227+
<ProductsSection />
226228
</div>
227229
)
228230
}

app/(states)/assam/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import Link from 'next/link'
2+
import { ProductsSection } from '@/components/ProductsSection'
23
import type { Metadata } from 'next'
34
import { generatePageMetadata, generateBreadcrumbSchema } from '@/lib/seo-utils'
45
import StateNavigator from '@/components/seo/StateNavigator'
@@ -143,6 +144,7 @@ export default function AssamPage() {
143144
</div>
144145
</div>
145146
</div>
147+
<ProductsSection />
146148
</div>
147149
)
148150
}

app/(states)/bihar/[city]/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { Metadata } from 'next'
2+
import { ProductsSection } from '@/components/ProductsSection'
23
import { notFound } from 'next/navigation'
34
import Link from 'next/link'
45
import { getCityInfoFromSlugs, getCityCoordinates, getRelatedCities, slugify } from '@/lib/cityData'
@@ -223,6 +224,7 @@ export default async function CityPage({ params }: CityPageProps) {
223224
</Link>
224225
</div>
225226
</section>
227+
<ProductsSection />
226228
</div>
227229
)
228230
}

app/(states)/bihar/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import Link from 'next/link'
2+
import { ProductsSection } from '@/components/ProductsSection'
23
import type { Metadata } from 'next'
34
import { generatePageMetadata, generateBreadcrumbSchema } from '@/lib/seo-utils'
45
import StateNavigator from '@/components/seo/StateNavigator'
@@ -143,6 +144,7 @@ export default function BiharPage() {
143144
</div>
144145
</div>
145146
</div>
147+
<ProductsSection />
146148
</div>
147149
)
148150
}

app/(states)/chhattisgarh/[city]/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { Metadata } from 'next'
2+
import { ProductsSection } from '@/components/ProductsSection'
23
import { notFound } from 'next/navigation'
34
import Link from 'next/link'
45
import { getCityInfoFromSlugs, getCityCoordinates, getRelatedCities, slugify } from '@/lib/cityData'
@@ -223,6 +224,7 @@ export default async function CityPage({ params }: CityPageProps) {
223224
</Link>
224225
</div>
225226
</section>
227+
<ProductsSection />
226228
</div>
227229
)
228230
}

app/(states)/chhattisgarh/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import Link from 'next/link'
2+
import { ProductsSection } from '@/components/ProductsSection'
23
import type { Metadata } from 'next'
34
import { generatePageMetadata, generateBreadcrumbSchema } from '@/lib/seo-utils'
45
import StateNavigator from '@/components/seo/StateNavigator'
@@ -143,6 +144,7 @@ export default function ChhattisgarhPage() {
143144
</div>
144145
</div>
145146
</div>
147+
<ProductsSection />
146148
</div>
147149
)
148150
}

app/(states)/goa/[city]/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { Metadata } from 'next'
2+
import { ProductsSection } from '@/components/ProductsSection'
23
import { notFound } from 'next/navigation'
34
import Link from 'next/link'
45
import { getCityInfoFromSlugs, getCityCoordinates, getRelatedCities, slugify } from '@/lib/cityData'
@@ -223,6 +224,7 @@ export default async function CityPage({ params }: CityPageProps) {
223224
</Link>
224225
</div>
225226
</section>
227+
<ProductsSection />
226228
</div>
227229
)
228230
}

app/(states)/goa/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import Link from 'next/link'
2+
import { ProductsSection } from '@/components/ProductsSection'
23
import type { Metadata } from 'next'
34
import { generatePageMetadata, generateBreadcrumbSchema } from '@/lib/seo-utils'
45
import StateNavigator from '@/components/seo/StateNavigator'
@@ -143,6 +144,7 @@ export default function GoaPage() {
143144
</div>
144145
</div>
145146
</div>
147+
<ProductsSection />
146148
</div>
147149
)
148150
}

0 commit comments

Comments
 (0)