aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/hooks
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/hooks')
-rw-r--r--src/utils/hooks/use-settings.tsx21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/utils/hooks/use-settings.tsx b/src/utils/hooks/use-settings.tsx
index cc5261b..a1d1a65 100644
--- a/src/utils/hooks/use-settings.tsx
+++ b/src/utils/hooks/use-settings.tsx
@@ -1,4 +1,3 @@
-import photo from '@assets/images/armand-philippot.jpg';
import { settings } from '@utils/config';
import { useRouter } from 'next/router';
@@ -31,21 +30,6 @@ export type LocaleSettings = {
supported: string[];
};
-export type PictureSettings = {
- /**
- * The picture height.
- */
- height: number;
- /**
- * The picture url.
- */
- src: string;
- /**
- * The picture width.
- */
- width: number;
-};
-
export type WebsiteSettings = {
/**
* The website name.
@@ -68,10 +52,6 @@ export type WebsiteSettings = {
*/
locales: LocaleSettings;
/**
- * A picture representing the website.
- */
- picture: PictureSettings;
- /**
* The website url.
*/
url: string;
@@ -109,7 +89,6 @@ const useSettings = (): UseSettingsReturn => {
supported: locales.supported,
},
name,
- picture: photo,
url,
},
};