Spaces:
Paused
Paused
File size: 312 Bytes
054d282 |
1 2 3 4 5 6 7 8 9 10 11 |
export default function Head() {
return (
<>
<title>Google Clone Next js 13</title>
<meta content="width=device-width, initial-scale=1" name="viewport" />
<meta name="description" content="Google clone created by Next js 13" />
<link rel="icon" href="/favicon.svg" />
</>
)
}
|