i cant center the items in next.js

Viewed 15

i have a problem i follow a lesson to this link https://www.youtube.com/watch?v=HVyct9EUNP8 i think i do same think but it doesnt work for me

this is components

import Head from 'next/head'
import Image from 'next/image'
import Girls from '../components/Girls'


export default function Home() {
  return (
    <div >
      <Head>
        <title>Nutt'n</title>
        <meta name="description" content="Generated by create next app" />
        <link rel="icon" href="/favicon.ico" />
      </Head>
      <Girls />

      

    </div>
  )
}

and this is index

import Head from 'next/head'
import Image from 'next/image'
import Girls from '../components/Girls'

i have same issues other codes too
[enter image description here][1]


export default function Home() {
  return (
    <div >
      <Head>
        <title>Nutt'n</title>
        <meta name="description" content="Generated by create next app" />
        <link rel="icon" href="/favicon.ico" />
      </Head>
      <Girls />

      

    </div>
  )
}

and this is the screen

0 Answers
Related