Initial Commit

This commit is contained in:
Koncept Kit
2025-12-05 16:40:33 +07:00
parent 0834f12410
commit 94c7d5aec0
91 changed files with 20446 additions and 0 deletions

32
src/App.css Normal file
View File

@@ -0,0 +1,32 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', sans-serif;
background-color: #FDFCF8;
color: #3D405B;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Fraunces', serif;
font-weight: 600;
}
.fraunces {
font-family: 'Fraunces', serif;
}
.dm-sans {
font-family: 'DM Sans', sans-serif;
}
.bg-warm-gradient {
background: linear-gradient(135deg, rgba(242, 204, 143, 0.2) 0%, rgba(224, 122, 95, 0.2) 100%);
}
.bg-soft-mesh {
background: radial-gradient(ellipse at top right, rgba(242, 204, 143, 0.4) 0%, #FDFCF8 50%, #FDFCF8 100%);
}