Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed packages/site/fonts/CentraNo1-Bold.woff2
Binary file not shown.
Binary file removed packages/site/fonts/CentraNo1-BoldItalic.woff2
Binary file not shown.
Binary file removed packages/site/fonts/CentraNo1-Book.woff2
Binary file not shown.
Binary file removed packages/site/fonts/CentraNo1-BookItalic.woff2
Binary file not shown.
Binary file removed packages/site/fonts/CentraNo1-Medium.woff2
Binary file not shown.
Binary file removed packages/site/fonts/CentraNo1-MediumItalic.woff2
Binary file not shown.
Binary file added packages/site/fonts/Geist-Bold.woff2
Binary file not shown.
Binary file added packages/site/fonts/Geist-BoldItalic.woff2
Binary file not shown.
Binary file added packages/site/fonts/Geist-Medium.woff2
Binary file not shown.
Binary file added packages/site/fonts/Geist-MediumItalic.woff2
Binary file not shown.
Binary file added packages/site/fonts/Geist-Regular.woff2
Binary file not shown.
Binary file added packages/site/fonts/Geist-RegularItalic.woff2
Binary file not shown.
45 changes: 39 additions & 6 deletions packages/site/gatsby-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,35 +50,68 @@ const config: GatsbyConfig = {
// ----------------------------------------------------------------
// Regular
{
family: 'CentraNo1',
family: 'Geist',
urls: {
woff2: `fonts/CentraNo1-Book.woff2`,
woff2: `fonts/Geist-Regular.woff2`,
},
fontStyle: 'normal',
fontWeight: 400,
},

// ----------------------------------------------------------------
// Regular Italic
{
family: 'Geist',
urls: {
woff2: `fonts/Geist-RegularItalic.woff2`,
},
fontStyle: 'italic',
fontWeight: 400,
},

// ----------------------------------------------------------------
// Medium
{
family: 'CentraNo1',
family: 'Geist',
urls: {
woff2: `fonts/CentraNo1-Medium.woff2`,
woff2: `fonts/Geist-Medium.woff2`,
},
fontStyle: 'normal',
fontWeight: 500,
},

// ----------------------------------------------------------------
// Medium Italic
{
family: 'Geist',
urls: {
woff2: `fonts/Geist-MediumItalic.woff2`,
},
fontStyle: 'italic',
fontWeight: 500,
},

// ----------------------------------------------------------------
// Bold
{
family: 'CentraNo1',
family: 'Geist',
urls: {
woff2: `fonts/CentraNo1-Bold.woff2`,
woff2: `fonts/Geist-Bold.woff2`,
},
fontStyle: 'normal',
fontWeight: 700,
},

// ----------------------------------------------------------------
// Bold Italic
{
family: 'Geist',
urls: {
woff2: `fonts/Geist-BoldItalic.woff2`,
},
fontStyle: 'italic',
fontWeight: 700,
},
],
},
},
Expand Down
8 changes: 4 additions & 4 deletions packages/site/src/components/styledComponents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const Divider = styled.div`
color: #24272a;

/* Heading-MD */
font-family: CentraNo1, ui-sans-serif;
font-family: Geist, ui-sans-serif;
font-size: 24px;
font-style: normal;
font-weight: 700;
Expand Down Expand Up @@ -88,7 +88,7 @@ export const AccountTitle = styled.p`
display: flex;
margin: 0px;
color: #000;
font-family: CentraNo1, ui-sans-serif;
font-family: Geist, ui-sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
Expand Down Expand Up @@ -176,7 +176,7 @@ export const AccountRowTitle = styled.p`
color: #000;

/* H6 - Bold 14px */
font-family: CentraNo1, ui-sans-serif;
font-family: Geist, ui-sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 700;
Expand All @@ -189,7 +189,7 @@ export const AccountRowValue = styled.p`
color: #6a737d;

/* H6 - Normal 14px */
font-family: CentraNo1, ui-sans-serif;
font-family: Geist, ui-sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
Expand Down
Loading