-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite.config.js
More file actions
26 lines (24 loc) · 913 Bytes
/
Copy pathsite.config.js
File metadata and controls
26 lines (24 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import logoBitmap from '~images/logo.png'
import logoVector from '~images/logo.svg'
import openGraphImage from '~images/sharing.jpg'
import colors from '~styles/_colors.module'
const config = {
url: process.env.NEXT_PUBLIC_SITE_URL,
name: 'lottadoodles',
fullName: 'Charlotte Edwards',
shortName: 'Charlotte',
titleTemplate: name => `%s ☆ ${name}`,
title: 'lottadoodles ☆ animation and game design student',
description:
'animation and game design student ☆ fantasy illustration, portrait art and character design',
logo: { bitmap: logoBitmap.src, vector: logoVector },
openGraphImage: openGraphImage.src,
themeColor: colors.sky,
socialLinks: {
Instagram: 'https://www.instagram.com/lotta.doodles',
TikTok: 'https://www.tiktok.com/@lotta.doodles',
VGen: 'https://vgen.co/lottadoodles',
YouTube: 'https://www.youtube.com/@lottadoodles'
}
}
export default config