Styling
The website template supports both Tailwind (default) and SCSS and is a hybrid of the two.
Each component comes with a Tailwind file and an SCSS file. You can mix and match at the component level.
// import tailwind styling
import Style from './button.tailwind.js';
// import scss styling
import Style from './button.module.scss';
Fonts
The default font is Open Sans. You can change this inside the layout component in components/layout/home.js
Please refer to the Next.js fonts documentation for more information.
Logo
The logo file is located in components/logo
you can add your own logo here by replacing these files:
logo-color.svg
logo-white.svg
Last updated
Was this helpful?