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
2 changes: 2 additions & 0 deletions src/app/blog/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import Link from "next/link";
import FadeIn from "@/components/ui/FadeIn";
import Breadcrumb from "@/components/ui/Breadcrumb";
import { breadcrumbJsonLd, blogItemListJsonLd, webPageJsonLd } from "@/lib/structured-data";
import CallToAction from "@/components/sections/CallToAction";

export const metadata = pageMetadata({
title: "Blog Efficience IT | Symfony, PHP et développement web",
Expand Down Expand Up @@ -97,6 +98,7 @@ export default function BlogPage() {
</Container>
</section>
</FadeIn>
<CallToAction />
</main>
</>
);
Expand Down
2 changes: 2 additions & 0 deletions src/app/nos-references/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import type { RelatedLink } from "@/components/sections/RelatedLinks";
import FadeIn from "@/components/ui/FadeIn";
import Breadcrumb from "@/components/ui/Breadcrumb";
import { breadcrumbJsonLd, webPageJsonLd, reviewsJsonLd } from "@/lib/structured-data";
import CallToAction from "@/components/sections/CallToAction";
import { testimonials } from "@/../data/testimonials";

const reviews = reviewsJsonLd(testimonials);
Expand Down Expand Up @@ -220,6 +221,7 @@ export default function NosReferences() {
<FadeIn>
<Testimonials />
</FadeIn>
<CallToAction />
</main>
</>
);
Expand Down
Loading