Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ website/
| **Skills** | Technical skills organized by category (Frontend, Backend, Database, Cloud) |
| **Projects** | Featured projects with descriptions and technologies |
| **Education** | Academic background |
| **Contact** | Contact information with email, phone, and location |
| **Contact** | Contact information with email and location |
| **Blog** | Blog post listings with pagination, tag filtering, and search |
| **Post** | Individual blog posts with reading time, table of contents, and social sharing |

Expand Down Expand Up @@ -367,7 +367,6 @@ Google Analytics 4 is integrated with privacy-focused configuration:
- Page views
- CV downloads
- Email clicks
- Phone clicks
- Social media clicks (LinkedIn, GitHub)
- Section visibility (IntersectionObserver)

Expand Down
5 changes: 0 additions & 5 deletions public/img/icons.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 0 additions & 6 deletions src/components/sections/Contact.astro
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,6 @@ const t = useTranslations(lang);
>
<a href="mailto:jjuanrivvera@gmail.com">jjuanrivvera@gmail.com</a>
</div>
<div class="contact-item">
<svg width="18" height="18"
><use href="/img/icons.svg#icon-phone"></use></svg
>
<a href="tel:+573167290759">+57 316 729 0759</a>
</div>
<div class="contact-item">
<svg width="18" height="18"
><use href="/img/icons.svg#icon-location"></use></svg
Expand Down
14 changes: 1 addition & 13 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ const {
url: canonicalUrl,
image: profileImageUrl,
email: 'jjuanrivvera@gmail.com',
telephone: '+573167290759',
address: {
'@type': 'PostalAddress',
addressLocality: 'Cali',
Expand Down Expand Up @@ -331,7 +330,7 @@ const {
}
}

// Setup contact link tracking (email, phone, social)
// Setup contact link tracking (email, social)
function setupContactTracking() {
if (typeof gtag === 'undefined') return;

Expand All @@ -346,17 +345,6 @@ const {
});
});

// Phone click tracking
document.querySelectorAll('a[href^="tel:"]').forEach((link) => {
link.addEventListener('click', () => {
gtag('event', 'contact_phone', {
event_category: 'contact',
event_label: 'Phone Click',
value: 1,
});
});
});

// Social link tracking
const socialDomains = [
'linkedin.com',
Expand Down
Loading