- Implemented canonical URL strategies for city-specific domains and entities. - Added helper functions for domain and city resolution. - Created tests for canonical URL generation and domain resolution. - Introduced entity quality checks for doctors and clinics to ensure meaningful content. - Developed unique introductory texts for listing pages to avoid duplicate content. - Established robots.txt policies for listing pages to manage indexing based on user filters. - Enhanced specialty content with dynamic introductions and FAQs to improve SEO.
18 lines
582 B
JavaScript
18 lines
582 B
JavaScript
import Detail from "./detail";
|
|
import Head from "./head";
|
|
import RelatedContent from "./relatedContent";
|
|
|
|
function BlogPage({ blog, blogs, cityName }) {
|
|
return (
|
|
<div className="padding-responsive pt-[84px] sm:pt-[110px] md:pt-[140px] lg:pt-[168px]">
|
|
<Head data={blog} cityName={cityName} />
|
|
<div className="flex flex-col gap-y-[32px] lg:flex-row items-start justify-center gap-[24px] mt-[16px] sm:mt-[19px] md:mt-[21px] lg:mt-[24px]">
|
|
<Detail data={blog} />
|
|
<RelatedContent data={blogs} />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default BlogPage;
|