Skip to content

Commit 1556223

Browse files
committed
fix: updated avatar image
1 parent 74c2828 commit 1556223

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

src/lib/constants.ts

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { z } from 'astro/zod';
22
import MetaDefaultImage from '@/assets/images/meta-default.jpg';
3-
import avatar from '@/assets/images/avatar.jpeg';
3+
import avatar from '@/assets/images/avatar.png';
44
import type { seoSchemaWithoutImage } from '@/content.config';
55
import astroConfig from 'astro.config.mjs';
66

@@ -11,17 +11,17 @@ export type AuthorInfo = {
1111
username?: string;
1212
location?: string;
1313
pronouns?: string;
14-
}
14+
};
1515

1616
export type Seo = z.infer<typeof seoSchemaWithoutImage> & {
1717
image?: any;
18-
}
18+
};
1919

2020
type DefaultConfigurationType = {
21-
baseUrl: string,
21+
baseUrl: string;
2222
author: AuthorInfo;
2323
seo: Seo;
24-
}
24+
};
2525

2626
export const DEFAULT_CONFIGURATION: DefaultConfigurationType = {
2727
baseUrl: astroConfig.site || 'https://getcvfolio.com',
@@ -35,12 +35,13 @@ export const DEFAULT_CONFIGURATION: DefaultConfigurationType = {
3535
},
3636
seo: {
3737
title: 'CV Folio — An Astro template inspired on Read.cv',
38-
description: 'Clean and aesthetic portfolio website for developers and designers',
38+
description:
39+
'Clean and aesthetic portfolio website for developers and designers',
3940
type: 'website',
4041
image: MetaDefaultImage,
4142
twitter: {
42-
creator: '@cvfolio'
43+
creator: '@cvfolio',
4344
},
4445
robots: 'noindex, nofollow',
45-
}
46-
};
46+
},
47+
};

0 commit comments

Comments
 (0)