Skip to content

Commit e5bd741

Browse files
committed
update next and react version
1 parent 740bff8 commit e5bd741

3 files changed

Lines changed: 73 additions & 104 deletions

File tree

package-lock.json

Lines changed: 53 additions & 53 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@
1010
"lint": "eslint"
1111
},
1212
"dependencies": {
13-
"react": "19.2.0",
14-
"react-dom": "19.2.0",
15-
"next": "16.0.0"
13+
"next": "^16.1.0",
14+
"react": "^19.2.3",
15+
"react-dom": "^19.2.3"
1616
},
1717
"devDependencies": {
18-
"babel-plugin-react-compiler": "1.0.0",
19-
"typescript": "^5",
18+
"@tailwindcss/postcss": "^4",
2019
"@types/node": "^20",
2120
"@types/react": "^19",
2221
"@types/react-dom": "^19",
23-
"@tailwindcss/postcss": "^4",
24-
"tailwindcss": "^4",
22+
"babel-plugin-react-compiler": "1.0.0",
2523
"eslint": "^9",
26-
"eslint-config-next": "16.0.0"
24+
"eslint-config-next": "16.0.0",
25+
"tailwindcss": "^4",
26+
"typescript": "^5"
2727
}
2828
}

src/app/page.tsx

Lines changed: 12 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,34 @@
1-
import Image from "next/image";
2-
31
export default function Home() {
42
return (
5-
<div className="flex min-h-screen items-center justify-center bg-zinc-50 font-sans dark:bg-black">
6-
<main className="flex min-h-screen w-full max-w-3xl flex-col items-center justify-between py-32 px-16 bg-white dark:bg-black sm:items-start">
7-
<Image
8-
className="dark:invert"
9-
src="/next.svg"
10-
alt="Next.js logo"
11-
width={100}
12-
height={20}
13-
priority
14-
/>
15-
<div className="flex flex-col items-center gap-6 text-center sm:items-start sm:text-left">
3+
<div className="min-h-screen flex items-center justify-center bg-zinc-50 dark:bg-black">
4+
<main className="min-h-screen w-full max-w-3xl px-16 py-32 bg-white dark:bg-black flex items-center justify-center">
5+
<div className="flex flex-col items-center gap-6">
166
<h1 className="max-w-xs text-3xl font-semibold leading-10 tracking-tight text-black dark:text-zinc-50">
17-
{/* Hello world! <br /> */}
18-
To get started, edit the page.tsx file.
7+
Hello Dewaweb!
198
</h1>
20-
<p className="max-w-md text-lg leading-8 text-zinc-600 dark:text-zinc-400">
9+
10+
<p className="max-w-md text-lg text-center leading-8 text-zinc-600 dark:text-zinc-400">
2111
Looking for a starting point or more instructions? Head over to{" "}
2212
<a
23-
href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
13+
href="https://kimino.my.id/"
14+
target="_blank"
15+
rel="noopener noreferrer"
2416
className="font-medium text-zinc-950 dark:text-zinc-50"
2517
>
2618
Templates
2719
</a>{" "}
2820
or the{" "}
2921
<a
30-
href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
22+
href="https://kimino.my.id/"
23+
target="_blank"
24+
rel="noopener noreferrer"
3125
className="font-medium text-zinc-950 dark:text-zinc-50"
3226
>
3327
Learning
3428
</a>{" "}
3529
center.
3630
</p>
3731
</div>
38-
<div className="flex flex-col gap-4 text-base font-medium sm:flex-row">
39-
<a
40-
className="flex h-12 w-full items-center justify-center gap-2 rounded-full bg-foreground px-5 text-background transition-colors hover:bg-[#383838] dark:hover:bg-[#ccc] md:w-[158px]"
41-
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
42-
target="_blank"
43-
rel="noopener noreferrer"
44-
>
45-
<Image
46-
className="dark:invert"
47-
src="/vercel.svg"
48-
alt="Vercel logomark"
49-
width={16}
50-
height={16}
51-
/>
52-
Deploy Now
53-
</a>
54-
<a
55-
className="flex h-12 w-full items-center justify-center rounded-full border border-solid border-black/8 px-5 transition-colors hover:border-transparent hover:bg-black/4 dark:border-white/[.145] dark:hover:bg-[#1a1a1a] md:w-[158px]"
56-
href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
57-
target="_blank"
58-
rel="noopener noreferrer"
59-
>
60-
Documentation
61-
</a>
62-
</div>
6332
</main>
6433
</div>
6534
);

0 commit comments

Comments
 (0)