Skip to content

Update Footer Social Media Links to RyloHQ#256

Open
tomeraharonii wants to merge 2 commits into
masterfrom
cursor/update-linkedin-footer-link-88f4
Open

Update Footer Social Media Links to RyloHQ#256
tomeraharonii wants to merge 2 commits into
masterfrom
cursor/update-linkedin-footer-link-88f4

Conversation

@tomeraharonii

@tomeraharonii tomeraharonii commented Jun 11, 2026

Copy link
Copy Markdown

Summary

Updates the footer social media links to point to RyloHQ profiles.

Changes

  • src/app/pages/landing/landing-footer/landing-footer.component.html — Updated the LinkedIn URL from sign-mt to rylohq, and the Twitter (X) URL from NagishSign to rylohq
  • docs/.vitepress/config.mts — Updated the LinkedIn URL in the docs site social links to rylohq

Resolves WWW-244

Slack Thread

Open in Web Open in Cursor 

Summary by CodeRabbit

  • Chores
    • Updated LinkedIn social links across the site to point to the official company LinkedIn page (replaced previous company page URL in site config and footer).

Updated the LinkedIn URL from https://www.linkedin.com/company/sign-mt
to https://www.linkedin.com/company/rylohq/ in the landing footer
component and the docs VitePress config.

Co-authored-by: Tomer Aharoni <tomeraharonii@users.noreply.github.com>
@coderabbitai

coderabbitai Bot commented Jun 11, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: f726a3d0-ac64-49c3-a18e-f8731b0bda55

📥 Commits

Reviewing files that changed from the base of the PR and between 66872d3 and b3a27d1.

📒 Files selected for processing (1)
  • src/app/pages/landing/landing-footer/landing-footer.component.html
🚧 Files skipped from review as they are similar to previous changes (1)
  • src/app/pages/landing/landing-footer/landing-footer.component.html

📝 Walkthrough

Walkthrough

Two LinkedIn social link URLs are updated to https://www.linkedin.com/company/rylohq/: one in the VitePress documentation configuration theme social links, and another in the landing footer component template.

Changes

LinkedIn Company URL Updates

Layer / File(s) Summary
LinkedIn company URL updates
docs/.vitepress/config.mts, src/app/pages/landing/landing-footer/landing-footer.component.html
VitePress theme social links and landing footer social links both update their LinkedIn URL to point to https://www.linkedin.com/company/rylohq/.

🎯 1 (Trivial) | ⏱️ ~3 minutes

🐰 Two links hop to Rylo's LinkedIn shore,
Where company profile waits at the door,
Updated with care in the docs and the view,
Social connections now shiny and new! 🔗✨

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title 'Update Footer Social Media Links to RyloHQ' accurately reflects the main change in the PR, which updates social media links (specifically LinkedIn) in the footer components to point to RyloHQ.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch cursor/update-linkedin-footer-link-88f4

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

Comment @coderabbitai help to get the list of available commands and usage tips.

Updated the X/Twitter URL from https://x.com/NagishSign
to https://x.com/rylohq in the landing footer component.

Co-authored-by: Tomer Aharoni <tomeraharonii@users.noreply.github.com>

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@src/app/pages/landing/landing-footer/landing-footer.component.html`:
- Line 28: The external anchor in landing-footer.component.html (the <a
href="https://www.linkedin.com/company/rylohq/" target="_blank">LinkedIn</a>
element) must include rel="noopener noreferrer" to mitigate reverse-tabnabbing;
update that anchor and any other sibling external links in the same list that
use target="_blank" to add rel="noopener noreferrer" so the behavior is
consistent across the component.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 4b4f8086-f44a-4eeb-baad-89791a97ce34

📥 Commits

Reviewing files that changed from the base of the PR and between d3e984c and 66872d3.

📒 Files selected for processing (2)
  • docs/.vitepress/config.mts
  • src/app/pages/landing/landing-footer/landing-footer.component.html

<ul>
<li><a href="https://x.com/NagishSign" target="_blank">Twitter (X)</a></li>
<li><a href="https://www.linkedin.com/company/sign-mt" target="_blank">LinkedIn</a></li>
<li><a href="https://www.linkedin.com/company/rylohq/" target="_blank">LinkedIn</a></li>

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Add rel="noopener noreferrer" for external links opened in new tabs.

target="_blank" without rel="noopener noreferrer" exposes reverse-tabnabbing risk. Please add rel on this link (and keep it consistent for sibling external links in this list).

Suggested patch
-        <li><a href="https://www.linkedin.com/company/rylohq/" target="_blank">LinkedIn</a></li>
+        <li><a href="https://www.linkedin.com/company/rylohq/" target="_blank" rel="noopener noreferrer">LinkedIn</a></li>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<li><a href="https://www.linkedin.com/company/rylohq/" target="_blank">LinkedIn</a></li>
<li><a href="https://www.linkedin.com/company/rylohq/" target="_blank" rel="noopener noreferrer">LinkedIn</a></li>
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/app/pages/landing/landing-footer/landing-footer.component.html` at line
28, The external anchor in landing-footer.component.html (the <a
href="https://www.linkedin.com/company/rylohq/" target="_blank">LinkedIn</a>
element) must include rel="noopener noreferrer" to mitigate reverse-tabnabbing;
update that anchor and any other sibling external links in the same list that
use target="_blank" to add rel="noopener noreferrer" so the behavior is
consistent across the component.

@cursor cursor Bot changed the title Update Footer LinkedIn Link to RyloHQ Update Footer Social Media Links to RyloHQ Jun 11, 2026
@github-actions

Copy link
Copy Markdown
Contributor

Visit the preview URL for this PR (updated for commit b3a27d1):

https://translate-sign-mt--pr256-cursor-update-linked-2a6ix5z3.web.app

(expires Thu, 18 Jun 2026 14:52:15 GMT)

🔥 via Firebase Hosting GitHub Action 🌎

Sign: 739446cfe7a349700ebd347d2a39e3b90ba24425

@AmitMY AmitMY left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wrong repo - this is sign.mt, not https://rylo.com/sign/translate
@HTMHell let's update the linkedin as preferred here

Tomer - we will merge rylo-translate (private) here once this site is fully deprecated.

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.

4 participants