Skip to content
Snippets Groups Projects
Verified Commit 5a089eef authored by Sofiane Lasri's avatar Sofiane Lasri
Browse files

feat: add meta descriptions and social media contact messages

- Added meta description to English and French home language files.
- Introduced new contact messages for social media in both French and English language files.
- Updated various Blade templates to utilize the new description values for better SEO and user guidance.
parent 5a1fb32d
No related branches found
No related tags found
No related merge requests found
Pipeline #1071 passed
<?php
return [
'desc' => 'Do you have a project in mind or want to discuss your graphic design needs? Feel free to contact me! Whether it’s for a collaboration, a quote request, or just to exchange creative ideas, I’m here to help.',
'contact_me_on_one_of_my_social_media' => 'Contact me on one of my social media',
];
......@@ -17,4 +17,5 @@
'waving_hand' => 'Waving hand emoji',
'roxannas_photo' => 'Photo of Roxanna Valtre',
],
'meta_description' => 'Roxanna Valtre, Graphic Designer. Discover my services and my portfolio.',
];
......@@ -2,4 +2,5 @@
return [
'desc' => 'Vous avez un projet en tête ou souhaitez discuter de vos besoins en design graphique ? N\'hésitez pas à me contacter ! Que ce soit pour une collaboration, une demande de devis ou simplement pour échanger des idées créatives, je suis là pour vous aider.',
'contact_me_on_one_of_my_social_media' => 'Contactez moi sur l\'un de mes réseaux',
];
......@@ -17,4 +17,5 @@
'waving_hand' => 'Emoji de main qui salue',
'roxannas_photo' => 'Photo de Roxana Valtre',
],
'meta_description' => 'Roxanna Valtre, Designer Graphique. Découvrez mes services et mon portfolio.',
];
@extends('layouts.public', ['title' => __('navbar.contact_me')])
@extends('layouts.public', ['title' => __('navbar.contact_me'), 'description' => __('contact.desc')])
@section('content')
<x-public.navbar class="container mx-auto px-4"/>
......@@ -7,7 +7,7 @@
<div>
<div class="text-center text-2xl">
Contactez moi sur l'un de mes réseaux
{{ __('contact.contact_me_on_one_of_my_social_media') }}
</div>
<div class="flex align-center justify-center gap-4 mt-4">
......
@extends('layouts.public')
@extends('layouts.public', ['description' => __('home.meta_description')])
@section('content')
<section class="HeroSection position-relative w-100">
......
@extends('layouts.public', ['title' => 'Maintenance'])
@extends('layouts.public', ['title' => 'Maintenance', 'description' => 'Site en construction...'])
@section('content')
<div class="inline-flex w-full min-h-screen flex-col justify-center items-center gap-2.5"
......
@extends('layouts.public', ['title' => __('navbar.portfolio')])
@extends('layouts.public', ['title' => __('navbar.portfolio'), 'description' => __('services.description')])
@section('content')
<x-public.navbar class="container mx-auto px-4"/>
......
@extends('layouts.public', ['title' => $prestation->nameTransKey->getTranslation()])
@extends('layouts.public', [
'title' => $prestation->nameTransKey->getTranslation(),
'description' => $prestation->attractDescTransKey->getTranslation(),
'image' => $prestation->uploadedPicture
])
@section('content')
<x-public.navbar class="container mx-auto px-4"/>
......
@extends('layouts.public', ['title' => __('navbar.services')])
@extends('layouts.public', ['title' => __('navbar.services'), 'description' => __('services.attract_desc')])
@section('content')
<x-public.navbar class="container mx-auto px-4"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment