-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
33326cf
commit b1cbff5
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
) | ||
); | ||
} |