File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed
Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change 11import type { z } from 'astro/zod' ;
22import MetaDefaultImage from '@/assets/images/meta-default.jpg' ;
3- import avatar from '@/assets/images/avatar.jpeg ' ;
3+ import avatar from '@/assets/images/avatar.png ' ;
44import type { seoSchemaWithoutImage } from '@/content.config' ;
55import 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
1616export type Seo = z . infer < typeof seoSchemaWithoutImage > & {
1717 image ?: any ;
18- }
18+ } ;
1919
2020type DefaultConfigurationType = {
21- baseUrl : string ,
21+ baseUrl : string ;
2222 author : AuthorInfo ;
2323 seo : Seo ;
24- }
24+ } ;
2525
2626export 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+ } ;
You can’t perform that action at this time.
0 commit comments