import Head from 'next/head'; import { Icon, InlineIcon, addIcon } from '@iconify/react'; // Use Iconify to render logo addIcon('logo', { width: 283, height: 64, body: '', }); // Icon to test generating unique IDs const iconDataWithID = { body: '', width: 128, height: 128, }; export default function Home() { return (
Create Next App

Welcome to Next.js!

Get started by editing pages/index.js

Documentation

Find in-depth information about Next.js features and API.

Learn

Learn about Next.js in an interactive course with quizzes!

Examples

Discover and deploy boilerplate example Next.js projects.

Deploy

Instantly deploy your Next.js site to a public URL with Vercel.

Iconify demo

Home icons (generated on client):{' '}

Icons to test unique ids (generated on server):{' '} Due to Next.js behavior, icons that use IDs should have "id" attribute or Next.js will warn that content generated on server and client does not match.

); }