Design électronique · Consulting · Formation - - disponible - freelance · France - diff --git a/src/lib/tracking.ts b/src/lib/tracking.ts index 3802055..c154e0d 100644 --- a/src/lib/tracking.ts +++ b/src/lib/tracking.ts @@ -3,8 +3,7 @@ export const TRACK_EVENTS = { outboundLinkedinContact: 'outbound_linkedin_contact', outboundEmailContact: 'outbound_email_contact', outboundGithubContact: 'outbound_github_contact', - outboundGithubProjectAudioBattery: 'outbound_github_project_audio_battery', - ctaLabInteractifOpen: 'cta_lab_interactif_open' + outboundGithubProjectAudioBattery: 'outbound_github_project_audio_battery' } as const; export type TrackEventName = (typeof TRACK_EVENTS)[keyof typeof TRACK_EVENTS]; diff --git a/src/pages/formation.astro b/src/pages/formation.astro index 3bb1922..9eb18b8 100644 --- a/src/pages/formation.astro +++ b/src/pages/formation.astro @@ -13,7 +13,6 @@ const homeAboutHref = withSiteBase('/#a-propos'); const homeMissionsHref = withSiteBase('/#graphic-sprints-title'); const formationHref = withSiteBase('/formation/'); const contactHref = withSiteBase('/#contact'); -const labHref = withSiteBase('/lab/'); const mentionsHref = withSiteBase('/mentions-legales/'); const headerItems = [ { href: homeAboutHref, label: 'Approche' }, @@ -255,7 +254,6 @@ const headerItems = [ Accueil Formation - Lab LinkedIn contact@lelectronrare.fr GitHub diff --git a/src/pages/index.astro b/src/pages/index.astro index e5a8d4e..7b7d572 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -13,13 +13,11 @@ import { withSiteBase } from '@/lib/site'; import { TRACK_EVENTS, trackAttrs } from '@/lib/tracking'; const formationHref = withSiteBase('/formation/'); -const labHref = withSiteBase('/lab/'); const mentionsHref = withSiteBase('/mentions-legales/'); const headerItems = [ { href: '#a-propos', label: 'Approche' }, { href: '#graphic-sprints-title', label: 'Missions' }, { href: formationHref, label: 'Formation' }, - { href: labHref, label: 'Lab', attrs: trackAttrs(TRACK_EVENTS.ctaLabInteractifOpen, labHref) }, { href: '#faq', label: 'FAQ' }, { href: '#contact', label: 'Contact', desktopOnly: true } ]; @@ -106,7 +104,6 @@ const headerItems = [ Approche Missions Formation - Lab FAQ Contact Accueil Formation - Lab Mentions légales LinkedIn contact@lelectronrare.fr diff --git a/src/pages/sitemap.xml.ts b/src/pages/sitemap.xml.ts index 93706c0..f341cca 100644 --- a/src/pages/sitemap.xml.ts +++ b/src/pages/sitemap.xml.ts @@ -6,7 +6,6 @@ export const GET: APIRoute = () => { const pages = [ { path: '', priority: '1.0', changefreq: 'weekly' }, { path: 'formation/', priority: '0.9', changefreq: 'monthly' }, - { path: 'lab/', priority: '0.8', changefreq: 'weekly' }, { path: 'mentions-legales/', priority: '0.3', changefreq: 'yearly' } ];