diff --git a/app/page.tsx b/app/page.tsx index 9fad5c5..841cd8d 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,6 +1,29 @@ import Image from "next/image"; import Link from "next/link"; +const linkItemProp = [ + { + href: "https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app", + title: "Docs", + sub: "Find in-depth information about Next.js features and API.", + }, + { + href: "https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app", + title: "Learn", + sub: "Learn about Next.js in an interactive course with quizzes!", + }, + { + href: "https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app", + title: "Templates", + sub: "Explore starter templates for Next.js.", + }, + { + href: "https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app", + title: "Deploy", + sub: "Instantly deploy your Next.js site to a shareable URL with Vercel.", + }, +]; + export default function Home() { return (
@@ -30,92 +53,44 @@ export default function Home() { +
+ Next.js Logo +
Draw.io -
- Next.js Logo -
-

Next.js 및 tailwind css 사용해보기

+

Next.js 및 tailwind css, 기타등등... 사용해보기

- -

- Docs{" "} - - -> - -

-

- Find in-depth information about Next.js features and API. -

-
- - -

- Learn{" "} - - -> - -

-

- Learn about Next.js in an interactive course with quizzes! -

-
- - -

- Templates{" "} - - -> - -

-

- Explore starter templates for Next.js. -

-
- - -

- Deploy{" "} - - -> - -

-

- Instantly deploy your Next.js site to a shareable URL with Vercel. -

-
+ {linkItemProp.map((linkItem, i) => ( + +

+ {linkItem.title}{" "} + + -> + +

+

+ {linkItem.sub} +

+
+ ))}
);