File tree Expand file tree Collapse file tree
politique-de-confidentialite Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import BlogCard from "@/components/cards/BlogCard";
44import { getAllPosts , getCategories , getCategorySlug } from "@/lib/blog" ;
55import Link from "next/link" ;
66import FadeIn from "@/components/ui/FadeIn" ;
7+ import Breadcrumb from "@/components/ui/Breadcrumb" ;
78import { breadcrumbJsonLd , blogItemListJsonLd , webPageJsonLd } from "@/lib/structured-data" ;
89
910export const metadata = pageMetadata ( {
@@ -46,6 +47,7 @@ export default function BlogPage() {
4647 < main >
4748 < section className = "bg-light-gray py-16 md:py-24" >
4849 < Container className = "text-center" >
50+ < Breadcrumb items = { [ { label : "Blog" } ] } />
4951 < h1 className = "font-display text-4xl font-bold text-dark md:text-5xl" >
5052 Blog Efficience IT
5153 </ h1 >
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import SectionTitle from "@/components/ui/SectionTitle";
55import Accordion from "@/components/ui/Accordion" ;
66import ContactForm from "@/components/sections/ContactForm" ;
77import FadeIn from "@/components/ui/FadeIn" ;
8+ import Breadcrumb from "@/components/ui/Breadcrumb" ;
89import { faqItems } from "@/../data/faq" ;
910import { breadcrumbJsonLd , webPageJsonLd } from "@/lib/structured-data" ;
1011
@@ -58,6 +59,7 @@ export default function Contact() {
5859 < main >
5960 < section className = "bg-light-gray py-16 md:py-24" >
6061 < Container className = "text-center" >
62+ < Breadcrumb items = { [ { label : "Contact" } ] } />
6163 < h1 className = "font-display text-4xl font-bold text-dark md:text-5xl" >
6264 Contactez-nous
6365 </ h1 >
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import StickyMobileCta from "@/components/sections/StickyMobileCta";
88import RelatedLinks from "@/components/sections/RelatedLinks" ;
99import type { RelatedLink } from "@/components/sections/RelatedLinks" ;
1010import FadeIn from "@/components/ui/FadeIn" ;
11+ import Breadcrumb from "@/components/ui/Breadcrumb" ;
1112import { breadcrumbJsonLd , webPageJsonLd } from "@/lib/structured-data" ;
1213import {
1314 greenMetrics ,
@@ -75,6 +76,7 @@ export default function GreenIt() {
7576 < main >
7677 < section className = "bg-light-gray py-16 md:py-24" >
7778 < Container >
79+ < Breadcrumb items = { [ { label : "Green IT" } ] } />
7880 < div className = "grid items-center gap-12 md:grid-cols-2" >
7981 < div >
8082 < p className = "text-sm font-semibold uppercase tracking-wider text-primary" >
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import TimelineItem from "@/components/cards/TimelineItem";
77import Button from "@/components/ui/Button" ;
88import CallToAction from "@/components/sections/CallToAction" ;
99import FadeIn from "@/components/ui/FadeIn" ;
10+ import Breadcrumb from "@/components/ui/Breadcrumb" ;
1011import { breadcrumbJsonLd , webPageJsonLd } from "@/lib/structured-data" ;
1112import RelatedLinks from "@/components/sections/RelatedLinks" ;
1213import type { RelatedLink } from "@/components/sections/RelatedLinks" ;
@@ -149,6 +150,7 @@ export default function LEntreprise() {
149150 < main >
150151 < section className = "bg-light-gray py-16 md:py-24" >
151152 < Container >
153+ < Breadcrumb items = { [ { label : "Notre histoire" } ] } />
152154 < div className = "grid items-center gap-12 md:grid-cols-2" >
153155 < div >
154156 < h1 className = "font-display text-4xl font-bold text-dark md:text-5xl" >
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import Container from "@/components/ui/Container";
55import Button from "@/components/ui/Button" ;
66import CallToAction from "@/components/sections/CallToAction" ;
77import FadeIn from "@/components/ui/FadeIn" ;
8+ import Breadcrumb from "@/components/ui/Breadcrumb" ;
89import RelatedLinks from "@/components/sections/RelatedLinks" ;
910import type { RelatedLink } from "@/components/sections/RelatedLinks" ;
1011import { breadcrumbJsonLd , webPageJsonLd } from "@/lib/structured-data" ;
@@ -61,9 +62,9 @@ export default function LaTeam() {
6162 dangerouslySetInnerHTML = { { __html : JSON . stringify ( webPage ) } }
6263 />
6364 < main >
64- { /* Hero */ }
6565 < section className = "bg-light-gray py-16 md:py-24" >
6666 < Container >
67+ < Breadcrumb items = { [ { label : "La team" } ] } />
6768 < div className = "grid items-center gap-12 md:grid-cols-2" >
6869 < div >
6970 < p className = "text-sm font-semibold uppercase tracking-wider text-primary" >
Original file line number Diff line number Diff line change 1+ import Breadcrumb from "@/components/ui/Breadcrumb" ;
12import { pageMetadata } from "@/lib/metadata" ;
23import Container from "@/components/ui/Container" ;
34
@@ -12,6 +13,7 @@ export default function MentionsLegales() {
1213 return (
1314 < main className = "py-16" >
1415 < Container className = "mx-auto max-w-3xl" >
16+ < Breadcrumb items = { [ { label : "Mentions légales" } ] } />
1517 < h1 className = "font-display text-3xl font-bold text-dark md:text-4xl" >
1618 Mentions légales
1719 </ h1 >
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import Testimonials from "@/components/sections/Testimonials";
66import RelatedLinks from "@/components/sections/RelatedLinks" ;
77import type { RelatedLink } from "@/components/sections/RelatedLinks" ;
88import FadeIn from "@/components/ui/FadeIn" ;
9+ import Breadcrumb from "@/components/ui/Breadcrumb" ;
910import { breadcrumbJsonLd , webPageJsonLd , reviewsJsonLd } from "@/lib/structured-data" ;
1011import { testimonials } from "@/../data/testimonials" ;
1112
@@ -131,6 +132,7 @@ export default function NosReferences() {
131132 < main >
132133 < section className = "bg-light-gray py-8 md:py-12" >
133134 < Container className = "text-center" >
135+ < Breadcrumb items = { [ { label : "Références" } ] } />
134136 < h1 className = "font-display text-4xl font-bold text-dark md:text-5xl" >
135137 Nos réalisations et contributions open source
136138 </ h1 >
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import Button from "@/components/ui/Button";
88import { services , symfonyAdvantages , methodology } from "@/../data/expertise" ;
99import CallToAction from "@/components/sections/CallToAction" ;
1010import FadeIn from "@/components/ui/FadeIn" ;
11+ import Breadcrumb from "@/components/ui/Breadcrumb" ;
1112import RelatedLinks from "@/components/sections/RelatedLinks" ;
1213import type { RelatedLink } from "@/components/sections/RelatedLinks" ;
1314import { breadcrumbJsonLd , webPageJsonLd } from "@/lib/structured-data" ;
@@ -76,6 +77,7 @@ export default function NotreExpertise() {
7677 < main >
7778 < section className = "bg-light-gray py-16 md:py-24" >
7879 < Container >
80+ < Breadcrumb items = { [ { label : "Nos expertises" } ] } />
7981 < div className = "grid items-center gap-12 md:grid-cols-2" >
8082 < div >
8183 < p className = "font-display text-sm font-semibold uppercase tracking-wider text-primary" >
Original file line number Diff line number Diff line change 1+ import Breadcrumb from "@/components/ui/Breadcrumb" ;
12import { pageMetadata } from "@/lib/metadata" ;
23import Container from "@/components/ui/Container" ;
34
@@ -12,6 +13,7 @@ export default function PolitiqueDeConfidentialite() {
1213 return (
1314 < main className = "py-16" >
1415 < Container className = "mx-auto max-w-3xl" >
16+ < Breadcrumb items = { [ { label : "Politique de confidentialité" } ] } />
1517 < h1 className = "font-display text-3xl font-bold text-dark md:text-4xl" >
1618 Politique de confidentialité
1719 </ h1 >
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ import Accordion from "@/components/ui/Accordion";
99import CallToAction from "@/components/sections/CallToAction" ;
1010import StickyMobileCta from "@/components/sections/StickyMobileCta" ;
1111import FadeIn from "@/components/ui/FadeIn" ;
12+ import Breadcrumb from "@/components/ui/Breadcrumb" ;
1213import RelatedLinks from "@/components/sections/RelatedLinks" ;
1314import type { RelatedLink } from "@/components/sections/RelatedLinks" ;
1415import { breadcrumbJsonLd , serviceJsonLd , webPageJsonLd } from "@/lib/structured-data" ;
@@ -177,6 +178,7 @@ export default function SecteurApiIntegration() {
177178 < main >
178179 < section className = "bg-light-gray py-16 md:py-24" >
179180 < Container >
181+ < Breadcrumb items = { [ { label : "Nos secteurs" , href : "/secteur" } , { label : "API et intégration" } ] } />
180182 < div className = "grid items-center gap-12 md:grid-cols-2" >
181183 < div >
182184 < p className = "text-sm font-semibold uppercase tracking-wider text-primary" >
You can’t perform that action at this time.
0 commit comments