Skip to content

Commit de91636

Browse files
committed
chore: Update README
1 parent 82b936a commit de91636

File tree

2 files changed

+48
-5
lines changed

2 files changed

+48
-5
lines changed

README.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,33 @@
11
# nsh07.github.io
2+
23
My github.io site
4+
5+
## Tech Stack
6+
7+
This website is created entirely using Compose Multiplatform in Kotlin. This website acts as both my
8+
portfolio website and as a proof of concept of Compose Multiplatform Web.
9+
10+
<div align="center">
11+
<svg fill="none" viewBox="0 0 50 56" class="compose-multiplatform-header__logo-img" width="50%">
12+
<defs>
13+
<radialGradient id="__JETBRAINS_COM__LOGO_PREFIX__1" cx="0" cy="0" r="1"
14+
gradientTransform="matrix(42.1315 0 0 42.1318 16.13 14.441)"
15+
gradientUnits="userSpaceOnUse">
16+
<stop stop-color="#5383EC"></stop>
17+
<stop offset="0.867" stop-color="#7F52FF"></stop>
18+
</radialGradient>
19+
<linearGradient id="__JETBRAINS_COM__LOGO_PREFIX__0" x1="37.172" x2="10.973" y1="0.377"
20+
y2="30.035" gradientUnits="userSpaceOnUse">
21+
<stop stop-color="#33C3FF"></stop>
22+
<stop offset="0.878" stop-color="#5383EC"></stop>
23+
</linearGradient>
24+
</defs>
25+
<path fill="#6075F2" d="M49.25 14v28L25 56 .75 42V14L25 0l24.25 14Z"></path>
26+
<path fill="#6B57FF" d="M34.5 22.5v11L25 39v17l24.25-14V14L34.5 22.5Z"></path>
27+
<path fill="url(#__JETBRAINS_COM__LOGO_PREFIX__1)"
28+
d="m25 39-9.5-5.5v-11L.75 14v28L25 56V39Z"></path>
29+
<path fill="url(#__JETBRAINS_COM__LOGO_PREFIX__0)"
30+
d="M15.5 22.5 25 17l9.5 5.5L49.25 14 25 0 .75 14l14.75 8.5Z"></path>
31+
<path fill="#000" d="m25 17 9.526 5.5v11L25 39l-9.526-5.5v-11L25 17Z"></path>
32+
</svg>
33+
</div>

composeApp/src/wasmJsMain/kotlin/org/nsh07/nsh07/App.kt

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@ package org.nsh07.nsh07
22

33
import androidx.compose.foundation.layout.Arrangement
44
import androidx.compose.foundation.layout.Box
5-
import androidx.compose.foundation.layout.Column
5+
import androidx.compose.foundation.layout.Spacer
6+
import androidx.compose.foundation.layout.fillMaxHeight
67
import androidx.compose.foundation.layout.fillMaxSize
8+
import androidx.compose.foundation.layout.height
9+
import androidx.compose.foundation.lazy.LazyColumn
710
import androidx.compose.material3.CircularWavyProgressIndicator
811
import androidx.compose.material3.ExperimentalMaterial3ExpressiveApi
912
import androidx.compose.material3.Scaffold
@@ -22,12 +25,21 @@ fun App() {
2225
Nsh07Theme {
2326
Scaffold {
2427
Box(contentAlignment = Alignment.Center, modifier = Modifier.fillMaxSize()) {
25-
Column(
28+
LazyColumn(
2629
horizontalAlignment = Alignment.CenterHorizontally,
27-
verticalArrangement = Arrangement.spacedBy(16.dp)
30+
verticalArrangement = Arrangement.Center,
31+
modifier = Modifier.fillMaxHeight()
2832
) {
29-
CircularWavyProgressIndicator()
30-
Text("Coming Soon...", fontSize = 64.sp, textAlign = TextAlign.Center, lineHeight = 68.sp)
33+
item {
34+
CircularWavyProgressIndicator()
35+
Spacer(Modifier.height(16.dp))
36+
Text(
37+
"Coming Soon...",
38+
fontSize = 64.sp,
39+
textAlign = TextAlign.Center,
40+
lineHeight = 68.sp
41+
)
42+
}
3143
}
3244
}
3345
}

0 commit comments

Comments
 (0)