Skip to content

Commit ea63ee5

Browse files
committed
update
1 parent 463be16 commit ea63ee5

File tree

3 files changed

+287
-251
lines changed

3 files changed

+287
-251
lines changed

app/page.tsx

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
11
export default function Page() {
2-
return <h1>Hello, World!</h1>;
2+
return (
3+
<div>
4+
{/* Header */}
5+
<header>
6+
<h1 className="text-xl font-bold">Jamil</h1>
7+
<button>
8+
<svg
9+
xmlns="http://www.w3.org/2000/svg"
10+
className="h-6 w-6"
11+
fill="none"
12+
viewBox="0 0 24 24"
13+
stroke="currentColor"
14+
>
15+
<path
16+
strokeLinecap="round"
17+
strokeLinejoin="round"
18+
strokeWidth={2}
19+
d="M4 6h16M4 12h16M4 18h16"
20+
/>
21+
</svg>
22+
</button>
23+
</header>
24+
25+
{/* Hero */}
26+
<section></section>
27+
28+
{/* Projects */}
29+
<section></section>
30+
31+
{/* Contact */}
32+
<section></section>
33+
34+
{/* Footer */}
35+
<section></section>
36+
</div>
37+
);
338
}

0 commit comments

Comments
 (0)