Add Salazar last name, X/Reddit socials, 3 new projects, expanded About Me, new favicon - #13
Merged
Merged
Conversation
Copilot
AI
changed the title
Add Salazar last name, social links, new projects, expanded About Me, new favicon
Add Salazar last name, X/Reddit socials, 3 new projects, expanded About Me, new favicon
Jun 2, 2026
Copilot created this pull request from a session on behalf of
simihablo
June 2, 2026 20:10
View session
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
🟡 Changes recommended
External links added via window.open(..., '_blank') should be changed to safe link semantics (e.g., rel="noopener noreferrer") to avoid reverse-tabnabbing.
Once you've addressed the issues Copilot identified, you can request another Copilot review.
Pull request overview
Updates the portfolio site’s branding and content to reflect an updated name, expanded “About Me”, additional project entries, new social links, and a new favicon reference in the document head.
Changes:
- Updated displayed identity to “Mericio Salazar” and refreshed About Me copy.
- Added X and Reddit social buttons (hero + contact) and added 3 new project entries.
- Added
favicon.pnglink inindex.htmland updated related meta tags.
File summaries
| File | Description |
|---|---|
| src/pages/Index.tsx | Updates name display, expands About Me, adds new projects, and introduces X/Reddit buttons (plus layout tweaks). |
| index.html | Updates title/meta identity fields and adds a PNG favicon link. |
Review details
Suppressed comments (4)
src/pages/Index.tsx:4
- The inline
RedditIconSVG is decorative (the button already has a text label). Mark it as such so screen readers don't announce it as an unlabeled graphic.
<svg className={className} viewBox="0 0 20 20" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
src/pages/Index.tsx:149
- Same reverse-tabnabbing concern as above: prefer an anchor with
rel="noopener noreferrer"instead ofwindow.open(..., '_blank').
variant="outline"
className="border-amber-400/70 text-amber-200 hover:bg-amber-300 hover:text-slate-950 transition-all duration-300"
onClick={() => window.open('https://www.reddit.com/user/MelodicClaim890/', '_blank')}
>
<RedditIcon className="mr-2 h-4 w-4" />
src/pages/Index.tsx:316
- Same reverse-tabnabbing concern: replace
window.open(..., '_blank')with a link usingtarget="_blank" rel="noopener noreferrer"(via<Button asChild>).
variant="outline"
className="border-slate-400 text-slate-200 hover:bg-slate-600 hover:text-white transition-all duration-300 hover:scale-105"
onClick={() => window.open('https://x.com/simihablo', '_blank')}
>
<X className="mr-2 h-5 w-5" />
src/pages/Index.tsx:325
- Same reverse-tabnabbing concern: replace
window.open(..., '_blank')with a link usingtarget="_blank" rel="noopener noreferrer"(via<Button asChild>).
variant="outline"
className="border-orange-600 text-orange-300 hover:bg-orange-600 hover:text-white transition-all duration-300 hover:scale-105"
onClick={() => window.open('https://www.reddit.com/user/MelodicClaim890/', '_blank')}
>
<RedditIcon className="mr-2 h-5 w-5" />
- Files reviewed: 2/3 changed files
- Comments generated: 3
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
+134
to
+142
| <Button | ||
| size="lg" | ||
| variant="outline" | ||
| className="border-sky-400/70 text-sky-200 hover:bg-sky-300 hover:text-slate-950 transition-all duration-300" | ||
| onClick={() => window.open('https://x.com/simihablo', '_blank')} | ||
| > | ||
| <X className="mr-2 h-4 w-4" /> | ||
| X | ||
| </Button> |
Comment on lines
+1
to
9
| import { Github, Linkedin, ArrowDown, X } from 'lucide-react'; | ||
|
|
||
| const RedditIcon = ({ className }: { className?: string }) => ( | ||
| <svg className={className} viewBox="0 0 20 20" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> | ||
| <circle cx="10" cy="10" r="10" fill="currentColor" fillOpacity="0"/> | ||
| <path d="M20 10C20 4.477 15.523 0 10 0S0 4.477 0 10c0 4.992 3.657 9.128 8.438 9.879V12.89h-2.54V10h2.54V7.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V10h2.773l-.443 2.89h-2.33v6.989C16.343 19.129 20 14.992 20 10z"/> | ||
| </svg> | ||
| ); | ||
| import { Button } from '@/components/ui/button'; |
| <div className="max-w-6xl mx-auto text-center"> | ||
| <p className="text-slate-300"> | ||
| © 2025 Mericio • Infrastructure Engineer • Guatemala 🇬🇹 | ||
| © 2025 Mericio Salazar • Infrastructure Engineer • Guatemala 🇬🇹 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Personalizes and expands the portfolio site with updated identity info, social presence, and project coverage.
Changes
<title>, metaauthor/og:title, and footerfavicon.icowithfavicon.png(GitHub avatar); added<link rel="icon">inindex.htmlx.com/simihablo) and Reddit (reddit.com/user/MelodicClaim890/) buttons with icons in both the hero and contact sections