Skip to content

Conversation

@ameer2468
Copy link
Contributor

@ameer2468 ameer2468 commented Sep 4, 2025

Summary by CodeRabbit

  • New Features

    • New SEO landing pages: Screen Recorder, Free Screen Recorder, Mac, Windows, and Screen Recording Software.
    • Interactive comparison slider and optional header logos/comparison in SEO templates.
    • Enhanced SEO metadata and social previews across new pages.
  • Improvements

    • Client-side navigation for download links.
    • Animated hero, interactive FAQ accordion, updated typography/layout.
    • Mode cards now include icons; comparison tables show clear status indicators.
  • Bug Fixes

    • Prevent unintended form submissions by setting type="button" on navbar and FAQ toggles.
  • Style

    • Added left-perspective utility; smoother button color transitions; refined link transition rules.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Sep 4, 2025

Caution

Review failed

The pull request is closed.

Walkthrough

Adds new Next.js SEO pages and routes, introduces a ComparisonSlider component, expands SeoPageTemplate with optional features, and refactors SEO content types to include icons and structured comparison cells. Converts several pages to typed content, updates some UI behaviors/styles, and replaces internal links with Next.js Link for client-side routing.

Changes

Cohort / File(s) Summary
New SEO route pages
apps/web/app/(site)/(seo)/free-screen-recorder/page.tsx, apps/web/app/(site)/(seo)/screen-recorder-mac/page.tsx, apps/web/app/(site)/(seo)/screen-recorder-windows/page.tsx, apps/web/app/(site)/(seo)/screen-recorder/page.tsx, apps/web/app/(site)/(seo)/screen-recording-software/page.tsx
Added new App Router pages that render existing components and export Next.js metadata (OG/Twitter) where applicable; default Page components return their respective SEO page components.
SEO solutions/content pages typed and enriched
apps/web/app/(site)/(seo)/solutions/daily-standup-software/page.tsx, .../solutions/employee-onboarding-platform/page.tsx, .../solutions/online-classroom-tools/page.tsx, apps/web/components/pages/seo/LoomAlternativePage.tsx, apps/web/components/pages/seo/RemoteTeamCollaborationPage.tsx, apps/web/components/pages/seo/ScreenRecorderPage.tsx
Annotated content with SeoPageContent type; added icon fields to recording modes; converted comparison rows from strings to { text, status } cells; adjusted copy; removed "use client" from ScreenRecorderPage.
SEO template and comparison UI
apps/web/components/seo/SeoPageTemplate.tsx, apps/web/components/seo/ComparisonSlider.tsx, apps/web/components/seo/types.ts
New ComparisonSlider component; SeoPageTemplate now accepts showLogosInHeader and showLoomComparisonSlider, adds motion-based UI, comparison cell renderer, accordion FAQ; types extended with ComparisonCell, ComparisonStatus, and mode icon.
Navigation and UI tweaks
apps/web/components/pages/DownloadPage.tsx, apps/web/app/(site)/Navbar.tsx, apps/web/app/(site)/Footer.tsx, apps/web/components/pages/HomePage/Faq.tsx, apps/web/app/globals.css, packages/ui/src/components/Button.tsx
Replaced internal anchors with Link; added type="button" to buttons; adjusted list keys to strings; minor FAQ tweaks; added .left-perspective class and limited transition rule to a; added transition classes to Button variants.

Sequence Diagram(s)

sequenceDiagram
  participant User
  participant Route as Next.js Route (SEO page)
  participant Template as SeoPageTemplate
  participant Slider as ComparisonSlider

  User->>Route: Navigate to /... (e.g., /free-screen-recorder)
  Route->>Template: Render with content + flags (showLogosInHeader?, showLoomComparisonSlider?)
  alt showLoomComparisonSlider
    Template->>Slider: Mount with left/right images and labels
    User-->>Slider: Drag handle / touch move
    Slider->>Slider: Recompute clipPath + handle position
    Slider-->>User: Visual split updates
  else
    Template->>Template: Render sections (features, video, comparison, FAQ)
  end
  User-->>Template: Toggle FAQ item
  Template->>Template: Animate expand/collapse
Loading

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~60 minutes

Possibly related PRs

Poem

A whisk of paws on keys so bright,
New routes hop in, with meta light.
A slider splits the dawn from noon,
Icons twinkle—Zap!—Clap!—a tune.
Typed carrots line the garden rows,
I click, compare—how swiftly it flows.
Thump-thump: ship it—on we go! 🥕✨


📜 Recent review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 7a99724 and 54842dd.

⛔ Files ignored due to path filters (2)
  • apps/web/public/logos/logo-solo.svg is excluded by !**/*.svg
  • apps/web/public/logos/loom.svg is excluded by !**/*.svg
📒 Files selected for processing (20)
  • apps/web/app/(site)/(seo)/free-screen-recorder/page.tsx (1 hunks)
  • apps/web/app/(site)/(seo)/screen-recorder-mac/page.tsx (1 hunks)
  • apps/web/app/(site)/(seo)/screen-recorder-windows/page.tsx (1 hunks)
  • apps/web/app/(site)/(seo)/screen-recorder/page.tsx (1 hunks)
  • apps/web/app/(site)/(seo)/screen-recording-software/page.tsx (1 hunks)
  • apps/web/app/(site)/(seo)/solutions/daily-standup-software/page.tsx (3 hunks)
  • apps/web/app/(site)/(seo)/solutions/employee-onboarding-platform/page.tsx (4 hunks)
  • apps/web/app/(site)/(seo)/solutions/online-classroom-tools/page.tsx (3 hunks)
  • apps/web/app/(site)/Footer.tsx (6 hunks)
  • apps/web/app/(site)/Navbar.tsx (1 hunks)
  • apps/web/app/globals.css (2 hunks)
  • apps/web/components/pages/DownloadPage.tsx (2 hunks)
  • apps/web/components/pages/HomePage/Faq.tsx (2 hunks)
  • apps/web/components/pages/seo/LoomAlternativePage.tsx (4 hunks)
  • apps/web/components/pages/seo/RemoteTeamCollaborationPage.tsx (3 hunks)
  • apps/web/components/pages/seo/ScreenRecorderPage.tsx (1 hunks)
  • apps/web/components/seo/ComparisonSlider.tsx (1 hunks)
  • apps/web/components/seo/SeoPageTemplate.tsx (12 hunks)
  • apps/web/components/seo/types.ts (3 hunks)
  • packages/ui/src/components/Button.tsx (1 hunks)
✨ Finishing Touches
  • 📝 Generate Docstrings
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch fix-improve-seo-pages

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR/Issue comments)

Type @coderabbitai help to get the list of available commands.

Other keywords and placeholders

  • Add @coderabbitai ignore or @coderabbit ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@ameer2468 ameer2468 merged commit a20569e into main Sep 4, 2025
14 of 15 checks passed
@ameer2468 ameer2468 deleted the fix-improve-seo-pages branch September 4, 2025 12:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants