mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
feat(blog): remove BlogPostCTA from blog pages
This commit is contained in:
parent
784c216053
commit
77ec074e2c
3 changed files with 1 additions and 13 deletions
|
|
@ -27,7 +27,6 @@ import { ogImageUrl } from "@/lib/og"
|
|||
import { BlogPostAnalytics } from "@/components/blog/BlogAnalytics"
|
||||
import { BlogContent } from "@/components/blog/BlogContent"
|
||||
import { BlogFAQ, type FAQItem } from "@/components/blog/BlogFAQ"
|
||||
import { BlogPostCTA } from "@/components/blog/BlogPostCTA"
|
||||
|
||||
// Force dynamic rendering for request-time publish gating
|
||||
export const dynamic = "force-dynamic"
|
||||
|
|
@ -291,10 +290,6 @@ export default async function BlogPostPage({ params }: Props) {
|
|||
|
||||
{/* FAQ Section rendered as accordion */}
|
||||
{hasFAQ && <BlogFAQ items={faqItems} />}
|
||||
|
||||
{/* Product CTA Module - Inspired by Vercel's blog design
|
||||
Default variant prioritizes Roo Code Cloud sign-up */}
|
||||
<BlogPostCTA />
|
||||
</div>
|
||||
|
||||
{/* Previous/Next Post Navigation */}
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ import { ogImageUrl } from "@/lib/og"
|
|||
import { BlogIndexAnalytics } from "@/components/blog/BlogAnalytics"
|
||||
import { BlogPostList } from "@/components/blog/BlogPostList"
|
||||
import { BlogPagination } from "@/components/blog/BlogPagination"
|
||||
import { BlogPostCTA } from "@/components/blog/BlogPostCTA"
|
||||
|
||||
import { BlogViewToggle } from "@/components/blog/BlogViewToggle"
|
||||
|
||||
// Force dynamic rendering for request-time publish gating
|
||||
|
|
@ -171,9 +171,6 @@ export default async function BlogIndexPage({ searchParams }: Props) {
|
|||
{showPagination && (
|
||||
<BlogPagination currentPage={currentPage} totalPages={totalPages} useQueryParams />
|
||||
)}
|
||||
|
||||
{/* Cloud CTA - shown after posts */}
|
||||
<BlogPostCTA />
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@ import { ogImageUrl } from "@/lib/og"
|
|||
import { BlogIndexAnalytics } from "@/components/blog/BlogAnalytics"
|
||||
import { BlogPostList } from "@/components/blog/BlogPostList"
|
||||
import { BlogPagination } from "@/components/blog/BlogPagination"
|
||||
import { BlogPostCTA } from "@/components/blog/BlogPostCTA"
|
||||
|
||||
// Force dynamic rendering for request-time publish gating
|
||||
export const dynamic = "force-dynamic"
|
||||
|
|
@ -164,9 +163,6 @@ export default async function BlogPaginatedPage({ params }: PageProps) {
|
|||
<BlogPostList posts={posts} />
|
||||
|
||||
<BlogPagination currentPage={currentPage} totalPages={totalPages} />
|
||||
|
||||
{/* Cloud CTA - shown after pagination */}
|
||||
<BlogPostCTA />
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue