-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbrand.ts
More file actions
76 lines (75 loc) · 2.04 KB
/
Copy pathbrand.ts
File metadata and controls
76 lines (75 loc) · 2.04 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import type { BrandConfig } from "@/data-models/brand";
export const BRAND_CONFIG: BrandConfig = {
identity: {
siteName: "Idol or Bust!",
tagline: "Simple website software for research projects",
siteUrl: "https://riehlegroup.github.io",
language: "en",
locale: "en_US",
logoPath: "/apple-touch-icon.png",
faviconPath: "/favicon.svg",
appleTouchIconPath: "/apple-touch-icon.png",
manifestPath: "/site.webmanifest",
defaultOgImagePath: "/og-image.png",
},
organization: {
name: "Idol or Bust",
legalName: "Idol or Bust Research Project",
socialProfiles: ["https://github.com/riehlegroup/idolbust"],
},
theme: {
primary: {
"50": "239 246 255",
"100": "219 234 254",
"200": "191 219 254",
"300": "147 197 253",
"400": "96 165 250",
"500": "59 130 246",
"600": "37 99 235",
"700": "29 78 216",
"800": "30 64 175",
"900": "30 58 138",
"950": "23 37 84",
},
secondary: {
"50": "248 250 252",
"100": "241 245 249",
"200": "226 232 240",
"300": "203 213 225",
"400": "148 163 184",
"500": "100 116 139",
"600": "71 85 105",
"700": "51 65 85",
"800": "30 41 59",
"900": "15 23 42",
"950": "2 6 23",
},
themeColor: "#2563eb",
fonts: {
sans: ["Inter", "system-ui", "sans-serif"],
mono: ["JetBrains Mono", "monospace"],
},
},
links: {
primaryCtas: [
{ label: "Learn More", href: "/about" },
{ label: "Read Blog", href: "/blog" },
],
appLinks: [],
social: [
{ platform: "github", url: "https://github.com/riehlegroup/idolbust" },
],
},
seo: {
titleTemplate: "%s | {siteName}",
defaultDescription:
"Simple website software for research projects that want to understand their user needs",
robots: "index,follow",
twitterCard: "summary_large_image",
},
blog: {
title: "Idol or Bust Blog",
description:
"Latest updates and insights from the Idol or Bust research project.",
},
};