diff --git a/.changeset/khaki-crabs-boil.md b/.changeset/khaki-crabs-boil.md
new file mode 100644
index 00000000000..7a90d771a6b
--- /dev/null
+++ b/.changeset/khaki-crabs-boil.md
@@ -0,0 +1,5 @@
+---
+'web-app': minor
+---
+
+Example of favicons
diff --git a/apps/web-app/src/pages/_app.tsx b/apps/web-app/src/pages/_app.tsx
index 6d3b643354f..98464e64fa4 100644
--- a/apps/web-app/src/pages/_app.tsx
+++ b/apps/web-app/src/pages/_app.tsx
@@ -1,6 +1,7 @@
import type { EmotionCache } from '@emotion/react';
import { appWithTranslation } from 'next-i18next';
import type { AppProps as NextAppProps } from 'next/app';
+import Head from 'next/head';
import { AppProviders } from '../app-providers';
/**
@@ -32,6 +33,9 @@ const MyApp = (appProps: AppProps) => {
const { Component, pageProps, emotionCache, err } = appProps;
return (