serp-chat / src /app /head.jsx
matt HOFFNER
revamp
054d282
raw
history blame
312 Bytes
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" />
</>
)
}