
Social Profiles
- 1 installs
- 73.4k repo stars
- Updated June 18, 2026
- thedaviddias/frontendchecklist
Links active official social profiles from the site and connects them with sameAs schema to strengthen entity identity and E-E-A-T.
About
Verifies the site links to active social profiles and declares them via sameAs schema so Google can confirm brand identity. A developer uses it when setting up Organization schema or auditing E-E-A-T signals.
- Use Organization or Person schema with sameAs
- Only link active profiles; abandoned accounts harm trust
Social Profiles by the numbers
- 1 all-time installs (skills.sh)
- Ranked #1,710 of 1,879 Marketing & SEO skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/thedaviddias/frontendchecklist --skill social-profilesAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| repo stars | ★ 73.4k |
| Last updated | June 18, 2026 |
| Repository | thedaviddias/frontendchecklist ↗ |
What it does
Links active official social profiles from the site and connects them with sameAs schema to strengthen entity identity and E-E-A-T.
Files
Link to active social profiles
Google uses social profile links and sameAs schema to verify an organization's identity and build entity associations that strengthen E-E-A-T — especially important for YMYL topics.
Quick Reference
- Link to your official social media profiles from the site footer or About page
- Use
OrganizationorPersonschema withsameAsto explicitly connect your site to social profiles - Only link to active profiles — a link to an abandoned account can harm trust
- Social profile links contribute to E-E-A-T (Experience, Expertise, Authoritativeness, Trustworthiness) signals
Check
Check the site's footer, header, and About page for links to social media profiles. Verify the links go to the correct, active official profiles. Check for Organization or Person JSON-LD schema with a sameAs array listing social profile URLs.
Fix
Add links to active social profiles in the site footer using recognizable icons or text labels. Add or update Organization / Person schema with a sameAs array containing all official social profile URLs (LinkedIn, Twitter/X, Facebook, etc.).
Explain
Explain how social profile links help search engines build an entity graph for the organization, how this contributes to E-E-A-T, and why linking to inactive profiles is counterproductive.
Code Review
Review metadata generation, rendered HTML, structured data, and response headers related to Link to active social profiles. Flag exact routes or templates where search-facing output violates the rule, and describe how to verify the final page output.
---
For full implementation details, code examples, and framework-specific guidance, see references/rule.md.
Rule page: https://frontendchecklist.io/en/rules/seo/social-profiles
Link to active social profiles
Checks for links to the organization's social media profiles to help search engines connect the site to its social entity and build E-E-A-T signals.
Priority: low · Difficulty: beginner · Time: 10 min
--- Linking to your organization's social media profiles helps search engines connect your website to your brand entity across the web. Schema.org's `sameAs` and Organization structured data are the main mechanisms that turn those profile URLs into a coherent entity signal.
Code Example
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Acme Inc.",
"url": "https://www.acme.com",
"logo": "https://www.acme.com/logo.png",
"sameAs": [
"https://www.linkedin.com/company/acme-inc",
"https://twitter.com/AcmeInc",
"https://www.facebook.com/AcmeInc",
"https://www.youtube.com/@AcmeInc",
"https://github.com/acme-inc"
]
}
</script>Why It Matters
Google uses social profile links and sameAs schema to verify an organization's identity and build entity associations that strengthen E-E-A-T. The trust benefit is strongest when those profiles are active and align with broader trust signals.
Personal Brand / Author
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Jane Smith",
"url": "https://janesmith.dev",
"sameAs": [
"https://twitter.com/janesmith",
"https://www.linkedin.com/in/janesmith",
"https://github.com/janesmith"
]
}
</script>Footer Link Implementation
<footer>
<nav aria-label="Social media profiles">
<a href="https://www.linkedin.com/company/acme" rel="noopener" target="_blank">
LinkedIn
</a>
<a href="https://twitter.com/AcmeInc" rel="noopener" target="_blank">
X (Twitter)
</a>
<a href="https://www.facebook.com/AcmeInc" rel="noopener" target="_blank">
Facebook
</a>
</nav>
</footer>Active vs. Inactive Profiles
Only link to and list profiles that are:
- ✅ Regularly updated (at least monthly)
- ✅ Using the correct brand name and logo
- ✅ Verified/official accounts
Do not link to:
- ❌ Abandoned accounts (last post years ago)
- ❌ Personal accounts of former employees
- ❌ Unofficial or fan pages
An outdated linked profile signals poor brand maintenance and can undermine trust assessments.
Platforms to Prioritize
| Platform | Best For |
|---|---|
| B2B companies, professional services | |
| X (Twitter) | Tech, media, developer brands |
| Consumer businesses, local businesses | |
| YouTube | Video-forward brands, tutorials |
| Visual products, lifestyle brands | |
| GitHub | Developer tools, open source |
Include all platforms where your organization has an established, active presence.
Exceptions
- Local SEO guidance only applies when the business actually serves a geographic area or has public location information relevant to searchers.
- Service-area businesses may need service-area guidance instead of storefront-focused address markup or location-page patterns.
- Do not invent addresses, business categories, or geographic claims to satisfy local SEO recommendations; accuracy overrides completeness.
Standards
- Use these references as the standard for the final search-facing HTML, metadata, and crawl behavior.
- Check the implementation against Schema.org: sameAs before treating the rule as satisfied.
- Check the implementation against Google: Organization structured data before treating the rule as satisfied.
Verification
Automated Checks
- Inspect rendered HTML and HTTP headers to confirm the expected metadata or crawlability signal is present.
- Test the affected URL with Google Search Console or equivalent tooling where relevant.
- Re-crawl a representative page set after deployment.
Manual Checks
- Confirm the change does not create conflicting canonical-url, robots, or structured-data signals.