-
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
Showing
2 changed files
with
9 additions
and
10,919 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,19 +1,15 @@ | ||
import AppleIconSvg from '../assets/icons/Frame 35.svg'; | ||
import { AppleIcon } from '@/components/atoms/icons/FoodIcons'; | ||
import { Inter } from 'next/font/google'; | ||
import { type NextPage } from 'next'; | ||
|
||
const inter = Inter({ subsets: ['latin'] }); | ||
|
||
export default function Home(): JSX.Element { | ||
const Home: NextPage = () => { | ||
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"> | ||
mara web | ||
<AppleIconSvg /> | ||
<AppleIcon /> | ||
</div> | ||
<main className={`flex min-h-screen justify-center items-center p-24 `}> | ||
<div className="heading1-bold text-primary2">mara</div> | ||
<p className="body2-semibold text-point1">web</p> | ||
<AppleIconSvg /> | ||
<AppleIcon /> | ||
</main> | ||
); | ||
} | ||
}; | ||
export default Home; |
Oops, something went wrong.