feat: initial site setup #1

Merged
naomi merged 11 commits from feat/scaffold into main 2025-07-15 19:12:06 -07:00
36 changed files with 8843 additions and 20 deletions
Showing only changes of commit 7adf2e7f58 - Show all commits

View File

@ -0,0 +1,26 @@
.character {
display: grid;
grid-template-areas:
"image name"
"image description";
grid-template-columns: 250px auto;
}
img {
grid-area: image;
width: 250px;
height: auto;
}
h2 {
grid-area: name;
}
p {
grid-area: description;
}
hr {
border: 2px solid var(--foreground);
margin: 10px 0;
}

View File

@ -1 +1,12 @@
<p>characters works!</p> <h1>Characters</h1>
<div class="character">
<h2>Emi</h2>
<img src="https://cdn.nhcarrigan.com/yurigpt/avatars/emi.png" alt="Emi's avatar">
<p>Our main character, Emi has always struggled to make friends in person. But she thrives online, where she feels she can be her true self.</p>
</div>
<hr />
<div class="character">
<h2>Mira</h2>
<img src="https://cdn.nhcarrigan.com/yurigpt/avatars/mira.png" alt="Mira's avatar">
<p>Mira is Emi's online girlfriend. They are in a long-distance relationship, so they have not met. This works out great for Emi, but maybe not all is as it seems?</p>
</div>