Skip to content

Commit

Permalink
style: 워딩 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
hyeseon-han committed Dec 20, 2023
1 parent 33326cf commit b1cbff5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import { Inter } from 'next/font/google'
import { Inter } from "next/font/google";

const inter = Inter({ subsets: ['latin'] })
const inter = Inter({ subsets: ["latin"] });

export default function Home (): JSX.Element {
export default function Home(): JSX.Element {
return (
<main
className={`flex min-h-screen flex-col items-center justify-between p-24 ${inter.className}`}
>
<div className="mb-32 grid text-center lg:max-w-5xl lg:w-full lg:mb-0 lg:grid-cols-4 lg:text-left">
next js
mara web
</div>
</main>
)
);
}

0 comments on commit b1cbff5

Please sign in to comment.