We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 463be16 commit ea63ee5Copy full SHA for ea63ee5
app/page.tsx
@@ -1,3 +1,38 @@
1
export default function Page() {
2
- return <h1>Hello, World!</h1>;
+ 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
30
31
+ {/* Contact */}
32
33
34
+ {/* Footer */}
35
36
+ </div>
37
+ );
38
}
0 commit comments