Skip to content
Merged
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
26 changes: 26 additions & 0 deletions src/app/[lang]/sections/FooterSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div className="max-w-4xl mx-auto px-4">
<div className="grid grid-cols-1 md:grid-cols-3 gap-8 sm:gap-12 mb-8">
<div>
<img src="/clarvia-logo.png" alt="Clarvia" className="h-12 w-auto mb-4" />

Check warning on line 9 in src/app/[lang]/sections/FooterSection.tsx

View workflow job for this annotation

GitHub Actions / Validate app

Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` or a custom image loader to automatically optimize images. This may incur additional usage or cost from your provider. See: https://nextjs.org/docs/messages/no-img-element
<p className="text-sm text-calm-blue-600 leading-relaxed">
{l(lang,
"Free bereavement guidance for families in Luxembourg.",
Expand Down Expand Up @@ -78,13 +78,39 @@
</p>
</div>
<div className="flex flex-wrap items-center gap-3 md:justify-end">
<a
href="https://github.com/clarvia-org/clarvia-graph/actions/workflows/ci.yml"
target="_blank"
rel="noopener noreferrer"
className="inline-block transition-transform hover:scale-[1.02] active:scale-[0.98]"
>
<img

Check warning on line 87 in src/app/[lang]/sections/FooterSection.tsx

View workflow job for this annotation

GitHub Actions / Validate app

Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` or a custom image loader to automatically optimize images. This may incur additional usage or cost from your provider. See: https://nextjs.org/docs/messages/no-img-element
src="https://github.com/clarvia-org/clarvia-graph/actions/workflows/ci.yml/badge.svg"
alt="CI (graph)"
className="h-6 w-auto"
loading="lazy"
/>
</a>
<a
href="https://github.com/clarvia-org/workflow-web/actions/workflows/validate.yml"
target="_blank"
rel="noopener noreferrer"
className="inline-block transition-transform hover:scale-[1.02] active:scale-[0.98]"
>
<img

Check warning on line 100 in src/app/[lang]/sections/FooterSection.tsx

View workflow job for this annotation

GitHub Actions / Validate app

Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` or a custom image loader to automatically optimize images. This may incur additional usage or cost from your provider. See: https://nextjs.org/docs/messages/no-img-element
src="https://github.com/clarvia-org/workflow-web/actions/workflows/validate.yml/badge.svg"
alt="CI (web)"
className="h-6 w-auto"
loading="lazy"
/>
</a>
<a
href="https://www.bestpractices.dev/en/projects/13112/passing"
target="_blank"
rel="noopener noreferrer"
className="inline-block transition-transform hover:scale-[1.02] active:scale-[0.98]"
>
<img

Check warning on line 113 in src/app/[lang]/sections/FooterSection.tsx

View workflow job for this annotation

GitHub Actions / Validate app

Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` or a custom image loader to automatically optimize images. This may incur additional usage or cost from your provider. See: https://nextjs.org/docs/messages/no-img-element
src="https://www.bestpractices.dev/projects/13112/badge"
alt="OpenSSF Best Practices"
className="h-6 w-auto"
Expand All @@ -97,7 +123,7 @@
rel="noopener noreferrer"
className="inline-block transition-transform hover:scale-[1.02] active:scale-[0.98]"
>
<img

Check warning on line 126 in src/app/[lang]/sections/FooterSection.tsx

View workflow job for this annotation

GitHub Actions / Validate app

Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` or a custom image loader to automatically optimize images. This may incur additional usage or cost from your provider. See: https://nextjs.org/docs/messages/no-img-element
src="https://api.scorecard.dev/projects/github.com/clarvia-org/clarvia-graph/badge"
alt="OpenSSF Scorecard"
className="h-6 w-auto"
Expand All @@ -110,7 +136,7 @@
rel="noopener noreferrer"
className="inline-block transition-transform hover:scale-[1.02] active:scale-[0.98]"
>
<img

Check warning on line 139 in src/app/[lang]/sections/FooterSection.tsx

View workflow job for this annotation

GitHub Actions / Validate app

Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` or a custom image loader to automatically optimize images. This may incur additional usage or cost from your provider. See: https://nextjs.org/docs/messages/no-img-element
src="https://api.reuse.software/badge/github.com/clarvia-org/clarvia-graph"
alt="REUSE compliant"
className="h-6 w-auto"
Expand Down
Loading