2026-08-25 14:23:09 +02:00
|
|
|
/** Name of the blog. Not translated: it is the brand. */
|
2026-08-25 12:08:01 +02:00
|
|
|
export const SITE_NAME = 'CorralitoComing'
|
|
|
|
|
|
2026-08-25 13:44:14 +02:00
|
|
|
/** Public contact address, shown in the footer. */
|
|
|
|
|
export const SITE_EMAIL = 'corralitocoming@gmail.com'
|
2026-08-25 15:35:29 +02:00
|
|
|
|
|
|
|
|
/** Social profiles listed in the footer. Names are brands, so untranslated. */
|
|
|
|
|
export const SOCIAL_LINKS = [
|
|
|
|
|
{ name: 'X', url: 'https://x.com/CORRALITOCOMING' },
|
|
|
|
|
{ name: 'Instagram', url: 'https://www.instagram.com/corralitocoming' },
|
|
|
|
|
{ name: 'Facebook', url: 'https://www.facebook.com/share/1JwXwQWyQA/' },
|
|
|
|
|
] as const
|