Add Google Fonts to Your React & NextJS + TailwindCSS Project (Next 14)

Kunal Singh

Apr 6, 2022

Using Google Fonts in Next.js

Next.js provides a convenient way to handle font imports, whether they are Google Fonts or local fonts. This guide will walk you through the process of installing and using Google Fonts in a Next.js project.

Step 1: Choose a Google Font

Visit the Google Fonts website and choose the font you want to use. For this example, we'll use the "Farro" font.

Step 2: Import and Use the Font in _app.js/layout.js depending upon your Next Version

Open your _app.js (or _app.jsx for JSX) file in the pages directory, and use the Farro font as an example:

// pages/_app.js
import { Farro} from 'next/font/google';
import '../styles/globals.css'; // Import your global styles here

const farro = Farro({
subsets: ['latin'],
// define weights are other configurations if needed
// weight: ['400', '700'],
// style: ['normal', 'italic'],
// display: 'swap',
});

export default function MyApp({ Component, pageProps }) {
return (
<main className={farro.className}>
<Component {...pageProps} />
</main>
);
}

Replace 'Farro' with the name of the Google Font you have chosen. Adjust the subsets and other options as needed.

Now, the "Farro" font will be applied globally to your entire application.

Step 3: Use the Font in Specific Components or Pages

You can use the font in specific components or pages by applying the font's className. For example, in pages/index.js:

// pages/index.js

import { Inter } from 'next/font/google';

const inter = Inter({
subsets: ['latin'],
});

export default function Home() {
return (
<div className={inter.className}>
<p>Hello World</p>
</div>
);
}

Step 4: Specifying a Subset (Optional)

Google Fonts are automatically subset, reducing the font file size for better performance. You can specify the subsets you want to preload. Add the subset to the function call:

const inter = Inter({ subsets: ['latin'] });

Step 5: Using Multiple Fonts

You can import and use multiple fonts by creating utility functions. For example:

// app/fonts.js

import { Inter, Roboto_Mono } from 'next/font/google';

export const inter = Inter({
subsets: ['latin'],
});

export const roboto_mono = Roboto_Mono({
subsets: ['latin'],
});

Then, use them in your application:

// pages/_app.js

import { inter, roboto_mono } from '../app/fonts';
// ...

Step 6: With Tailwind CSS

If you're using Tailwind CSS, you can integrate the font with your styles:

// pages/_app.js

import { Inter } from 'next/font/google';

const inter = Inter({
subsets: ['latin'],
variable: '--font-inter',
});

export default function MyApp({ Component, pageProps }) {
return (
<main className={`${inter.variable} font-sans`}>
<Component {...pageProps} />
</main>
);
}

Then, add the CSS variable to your Tailwind CSS config.

That's it! You've successfully installed and used Google Fonts in your Next.js project. Feel free to customize the fonts, weights, and styles according to your design preferences.

Recommendations

This One HTML Attribute Could Save Your Web App from a Security Nightmare

#web-security

,

#cdn

,

#web

Web security is a critical concern for developers, yet some of the most...

Jun 29, 2024

Are You Still Using Basic CSS? Here Are 7 Tricks to Get Ahead of the Curve

#css

Bored of the same old CSS? Unleash 7 hidden gems to take your designs to the...

Dec 27, 2023

Easiest way to store your logs in a file WITHOUT chaging the source file(node)

#productivity

Often, developers face challenges when dealing with a flood of logs in the...

Dec 21, 2023

Build Your Own Pinterest-Style Masonry Grid: A Step-by-Step Guide

#css

,

#web

,

#layout

Create a masonary grid layout with left to right content flow, supporting...

Dec 10, 2023

Using git diff and git apply to Share Local Changes with Peers

#git

,

#productivity

,

#software_engeneering

,

#dev

git diff and git apply are two powerful Git commands that can be used to share...

Nov 12, 2023

React Portals: Render Components Outside the current DOM Hierarchy

#react

,

#web

The createPortal API in React allows you to render child elements into a...

Jul 27, 2023

Cloning Made Easy: Try degit and Clone Directories within Repos.

#git

,

#productivit

Have you ever faced the dilemma of wanting just a small portion of a repository,...

Jul 19, 2023

Debugging Web Apps with Browser Dev Tools: 6 Amazing Tricks

#browser

,

#debugging

,

#web

Debugging web applications can be a challenging task, with errors like...

Jul 13, 2023

Controlled Versus Uncontrolled Components in React

#react

,

#forms

Understanding State Management Within Forms Comparing controlled and...

Nov 5, 2022

Format Numbers, Dates and Currencies with the Intl Object in Javascript

#javascript

,

#html

,

#web

Intl object can be used to format data into commonly used formats of dates,...

Sep 13, 2022

Image Masking on Hover Using CSS Clip Path and Javascript

#javscript

,

#css

,

#html

Image Masking can be used to add fancy hover highlight effects to images for...

Jul 23, 2022

Recreating CSS Tricks Fancy Grid Hover Effect

#html

,

#css

,

#UI

,

#recreation

CSS Trick had a simple yet cool grid layout which I found dope. So lets try to...

May 21, 2022

File Explorer Recursive React Component

#react

,

#javascript

,

#web

How to create a recursive folder Component using react.

Apr 16, 2022

Event Delegation in Javascript

#javscript

,

#css

,

#html

,

#web

,

#performance

Handling multiple Events in Javascript with minimal CPU Usage

Mar 6, 2022

A Simple Web Accessibility Trick that you most probably missed!

#html

,

#css

,

#web-accessibility

,

#user-experience

Imagine that you cannot use the mouse and have to Navigate a Website with the...

Dec 23, 2021

Top Terminal Commands I Use For Productivity

#linux

,

#cli

,

#terminal

The whole point of development is solving problems. But very often we Developers...

Nov 3, 2021

CSS Logical Properties

#css

,

#html

CSS logical properties are properties which are used to design element on the...

Oct 5, 2021

Fluid Typography in CSS 💧

#css

,

#html

,

#typography

CSS Best Practices in Fluid Typography

Aug 15, 2021

CSS Units in a Nutshell 🐚

#css

,

#html

Are you still writing your css units in pixels and percentages? if you are then...

Aug 8, 2021

Master Markdown in 5minutes ⌚

#markdown

,

#documentation

Markdown is a lightweight markup language for creating formatted text using a...

Aug 1, 2021

What is JAMStack ✨

#jamstack

Jamstack stands for Javascript APIS and Markup and it is based on this idea of...

Jul 31, 2021

+

Check my latest Blog Post

This One HTML Attribute Could Save Your Web App from a Security Nightmare

Read Now
Oh My Gawwdd!!!!!!!

Wow you have been viewing my site since 20 seconds!

+
+