Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mattam1234 committed Sep 29, 2024
1 parent 3756073 commit eb1387e
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 30 deletions.
65 changes: 62 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 9 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,22 @@
"lint": "next lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"next": "14.2.13",
"react": "^18",
"react-dom": "^18",
"next": "14.2.13"
"react-dom": "^18"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.13",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"eslint": "^8",
"eslint-config-next": "14.2.13"
"typescript": "^5"
}
}
29 changes: 7 additions & 22 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ export default function Home() {
<div className="grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]">
<main className="flex flex-col gap-8 row-start-2 items-center sm:items-start">
<div>
<h2>My First </h2>
<h2 className="border-b mb-2">My First </h2>
<Image
className="dark:invert"
className="dark:invert pb-2 border-black border-b mb "
src="https://nextjs.org/icons/next.svg"
alt="Next.js logo"
width={180}
Expand Down Expand Up @@ -44,12 +44,12 @@ export default function Home() {
>
<Image
aria-hidden
src="https://nextjs.org/icons/file.svg"
alt="File icon"
src="https://nextjs.org/icons/linked-in.svg"
alt="Linked-in"
width={16}
height={16}
/>
Learn
About me
</a>
<a
className="flex items-center gap-2 hover:underline hover:underline-offset-4"
Expand All @@ -59,27 +59,12 @@ export default function Home() {
>
<Image
aria-hidden
src="https://nextjs.org/icons/window.svg"
src="https://nextjs.org/icons/github.svg"
alt="Window icon"
width={16}
height={16}
/>
Examples
</a>
<a
className="flex items-center gap-2 hover:underline hover:underline-offset-4"
href="https://nextjs.org?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
target="_blank"
rel="noopener noreferrer"
>
<Image
aria-hidden
src="https://nextjs.org/icons/globe.svg"
alt="Globe icon"
width={16}
height={16}
/>
Go to nextjs.org →
GitHub
</a>
</footer>
</div>
Expand Down

0 comments on commit eb1387e

Please sign in to comment.