# Multiple children were passed to #### Why This Error Occurred In your application code multiple children were passed to `next/link` but only one child is supported: For example: ```js import Link from 'next/link' export default function Home() { return ( To About Second To About ) } ``` #### Possible Ways to Fix It Make sure only one child is used when using ``: ```js import Link from 'next/link' export default function Home() { return ( To About ) } ```