From e5386f79fc51c65bdc6144d89b2b9c1416a1ce27 Mon Sep 17 00:00:00 2001 From: el <el.beress@gmail.com> Date: Wed, 12 Feb 2025 17:27:17 +0100 Subject: [PATCH] =?UTF-8?q?Ajout=20de=20.gitignore=20et=20du=20favicon,=20?= =?UTF-8?q?mise=20=C3=A0=20jour=20des=20m=C3=A9tadonn=C3=A9es=20de=20mise?= =?UTF-8?q?=20en=20page?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 41 +++++++++++++++++++++++++ src/app/layout.tsx | 9 ++++++ src/{app/fv.png => public/favicon.png} | Bin 3 files changed, 50 insertions(+) create mode 100644 .gitignore rename src/{app/fv.png => public/favicon.png} (100%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d08ad59 --- /dev/null +++ b/.gitignore @@ -0,0 +1,41 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* + +# env files (can opt-in for committing if needed) +.env* + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts \ No newline at end of file diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4d69beb..b39fee1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -56,6 +56,15 @@ export const metadata: Metadata = { 'max-snippet': -1, }, }, + icons: { + icon: '/favicon.png', + shortcut: '/favicon.png', + apple: '/favicon.png', + other: { + rel: 'apple-touch-icon-precomposed', + url: '/favicon.png', + }, + }, }; export default function RootLayout({ diff --git a/src/app/fv.png b/src/public/favicon.png similarity index 100% rename from src/app/fv.png rename to src/public/favicon.png