Код: Выделить всё
`'use client'`
`import { Geist, Geist_Mono } from "next/font/google";`
`import Image from "next/image";`
`import Link from "next/link";`
`const geistSans = Geist({`
` variable: "--font-geist-sans",`
`subsets: ["latin"],`
`});`
`const geistMono = Geist_Mono({`
`variable: "--font-geist-mono",`
` subsets: ["latin"],`
`});`
`export default function Home() {`
`return (`
` ` className={" grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20"}
>`
``
` `
`
Sign Up
`
``
``
`
Login
`
`
Dont have an account?
Sign Up`
`
);
}`
Подробнее здесь: https://stackoverflow.com/questions/794 ... -and-in-23