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
Binary file added public/opengraph-seo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/opengraph.png
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
[ngClass]="{
hidden: nav.chosen === 'Activité' && (screenWidth$ | async) < 900,
'show-association': nav.chosen === 'Association' || nav.chosen === 'Activité',
'show-messages': nav.chosen === 'Messages'
'show-messages': nav.chosen === 'Messages',
}">
<div class="association" [ngClass]="nav.chosen !== 'Association' ? 'hidden' : ''">
<app-association-card [association]="association"></app-association-card>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { MAX_LENGTH, MIN_LENGTH, PHONE_REGEX } from 'src/app/features/authentica
import { UserType, VoluntaryLogin } from 'src/app/features/authentication/models/user.model';
import { AuthFacade } from 'src/app/features/authentication/services/auth-facade.service';
import { AuthService } from 'src/app/features/authentication/services/auth.service';
import { environment } from 'src/environments/environment.development';
import { environment } from 'src/environments/environment';
import { VoluntaryUpdateRequestDTO } from '../../../models/update-request-dto.models';
import { VoluntaryProfileService } from '../../../services/voluntary-profil.service';
import { EditableFieldComponent } from '../../editable-field/editable-field.component';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { HttpClient } from '@angular/common/http';
import { Injectable, inject } from '@angular/core';
import { Observable } from 'rxjs';
import { environment } from 'src/environments/environment.development';
import { environment } from 'src/environments/environment';
import { VoluntaryLogin } from '../../authentication/models/user.model';
import { VoluntaryUpdateRequestDTO } from '../models/update-request-dto.models';

Expand Down
25 changes: 16 additions & 9 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<meta name="keywords" content="bénévolat, association, engagement, solidarité, activités bénévoles, entraide, volontariat, dons, missions" />
<meta name="author" content="A l'Asso" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://www.alasso.fr/" />
<link rel="canonical" href="https://a-l-asso.fr/" />

<!-- Mobile & Accessibilité -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
Expand All @@ -24,14 +24,14 @@
<meta property="og:title" content="A l'Asso – Trouvez des activités bénévoles près de chez vous" />
<meta property="og:description" content="Rejoignez facilement une association et participez à des activités solidaires locales ou à distance." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.alasso.fr/" />
<meta property="og:image" content="https://www.alasso.fr/opengraph.png" />
<meta property="og:url" content="https://a-l-asso.fr/" />
<meta property="og:image" content="https://a-l-asso.fr/opengraph-seo.png" />

<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="A l'Asso – Bénévolat & Engagement" />
<meta name="twitter:description" content="Rejoignez facilement une association et participez à des activités solidaires locales ou à distance." />
<meta name="twitter:image" content="https://www.alasso.fr/assets/opengraph.png" />
<meta name="twitter:image" content="https://a-l-asso.fr/opengraph-seo.png" />

<!-- Favicon -->
<link rel="icon" type="image/png" href="LogoALAsso.png" />
Expand All @@ -46,11 +46,18 @@
"@context": "https://schema.org",
"@type": "WebSite",
"name": "A l'asso",
"url": "https://www.alasso.fr/",
"potentialAction": {
"@type": "SearchAction",
"target": "https://www.alasso.fr/recherche?q={search_term_string}",
"query-input": "required name=search_term_string"
"url": "https://a-l-asso.fr/",
"image": "https://a-l-asso.fr/opengraph-seo.png",
"description": "Rejoignez facilement une association et participez à des activités solidaires locales ou à distance.",
"email": "[email protected]",
"telephone": "+33 6 89 58 32 48",
"address": {
"@type": "PostalAddress",
"streetAddress": "32 Route de Portillon",
"addressLocality": "Vertou",
"postalCode": "44120",
"addressRegion": "Pays de la Loire",
"addressCountry": "FR"
}
}
</script>
Expand Down
Loading