-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Why: - Content Grid requires a navbar by design to navigate and filter shown content based on content type; How: - Added a navigation bar with buttons that help filtering out content based on content type; Example: Filtering for Blogposts: ![imagem](https://github.com/user-attachments/assets/8bcd2f73-f786-480e-ab21-b847725ad78d) Filtering for Podcasts: ![imagem](https://github.com/user-attachments/assets/5329884d-5b17-4ad3-9c25-92fc5f89642f)
- Loading branch information
Showing
34 changed files
with
1,371 additions
and
258 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
export default function StyleguidePage() { | ||
return ( | ||
<div> | ||
<h1 style={{ fontFamily: "var(--colfax-medium)" }}>This is a Colfax Medium H1.</h1> | ||
<h1 style={{ fontFamily: "var(--colfax-regular)" }}>This is a Colfax Redular H1.</h1> | ||
<h1 style={{ fontFamily: "var(--acta-book)" }}>This is an Acta H1.</h1> | ||
<h1 style={{ fontFamily: 'var(--colfax-medium)' }}>This is a Colfax Medium H1.</h1> | ||
<h1 style={{ fontFamily: 'var(--colfax-regular)' }}>This is a Colfax Redular H1.</h1> | ||
<h1 style={{ fontFamily: 'var(--acta-book)' }}>This is an Acta H1.</h1> | ||
|
||
<h2 style={{ fontFamily: "var(--colfax-medium)" }}>This is a Colfax Medium H2.</h2> | ||
<h2 style={{ fontFamily: "var(--colfax-regular)" }}>This is a Colfax Regular H2.</h2> | ||
<h2 style={{ fontFamily: "var(--acta-book)" }}>This is an Acta H2.</h2> | ||
<h2 style={{ fontFamily: 'var(--colfax-medium)' }}>This is a Colfax Medium H2.</h2> | ||
<h2 style={{ fontFamily: 'var(--colfax-regular)' }}>This is a Colfax Regular H2.</h2> | ||
<h2 style={{ fontFamily: 'var(--acta-book)' }}>This is an Acta H2.</h2> | ||
|
||
<h3 style={{ fontFamily: "var(--colfax-medium)" }}>This is a Colfax Medium H3.</h3> | ||
<h3 style={{ fontFamily: "var(--colfax-regular)" }}>This is a Colfax Regular H3.</h3> | ||
<h3 style={{ fontFamily: "var(--acta-book)" }}>This is an Acta H3.</h3> | ||
<h3 style={{ fontFamily: 'var(--colfax-medium)' }}>This is a Colfax Medium H3.</h3> | ||
<h3 style={{ fontFamily: 'var(--colfax-regular)' }}>This is a Colfax Regular H3.</h3> | ||
<h3 style={{ fontFamily: 'var(--acta-book)' }}>This is an Acta H3.</h3> | ||
|
||
<h4 style={{ fontFamily: "var(--colfax-medium)" }}>This is a Colfax Medium H4.</h4> | ||
<h4 style={{ fontFamily: "var(--colfax-regular)" }}>This is a Colfax Regular H4.</h4> | ||
<h4 style={{ fontFamily: "var(--acta-book)" }}>This is an Acta H4.</h4> | ||
<h4 style={{ fontFamily: 'var(--colfax-medium)' }}>This is a Colfax Medium H4.</h4> | ||
<h4 style={{ fontFamily: 'var(--colfax-regular)' }}>This is a Colfax Regular H4.</h4> | ||
<h4 style={{ fontFamily: 'var(--acta-book)' }}>This is an Acta H4.</h4> | ||
|
||
<h5 style={{ fontFamily: "var(--colfax-medium)" }}>This is a Colfax Medium H5.</h5> | ||
<h5 style={{ fontFamily: "var(--colfax-regular)" }}>This is a Colfax Regular H5.</h5> | ||
<h5 style={{ fontFamily: "var(--acta-book)" }}>This is an Acta H5.</h5> | ||
<h5 style={{ fontFamily: 'var(--colfax-medium)' }}>This is a Colfax Medium H5.</h5> | ||
<h5 style={{ fontFamily: 'var(--colfax-regular)' }}>This is a Colfax Regular H5.</h5> | ||
<h5 style={{ fontFamily: 'var(--acta-book)' }}>This is an Acta H5.</h5> | ||
|
||
<h6 style={{ fontFamily: "var(--colfax-medium)" }}>This is a Colfax Medium H6.</h6> | ||
<h6 style={{ fontFamily: "var(--colfax-regular)" }}>This is a Colfax Regular H6.</h6> | ||
<h6 style={{ fontFamily: "var(--acta-book)" }}>This is an Acta H6.</h6> | ||
<h6 style={{ fontFamily: 'var(--colfax-medium)' }}>This is a Colfax Medium H6.</h6> | ||
<h6 style={{ fontFamily: 'var(--colfax-regular)' }}>This is a Colfax Regular H6.</h6> | ||
<h6 style={{ fontFamily: 'var(--acta-book)' }}>This is an Acta H6.</h6> | ||
</div> | ||
); | ||
) | ||
} |
Oops, something went wrong.