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 8861 additions and 20 deletions
Showing only changes of commit 6c02df508b - Show all commits

View File

@ -1,12 +1,12 @@
<h1>Characters</h1> <h1>Characters</h1>
<div class="character"> <div class="character">
<h2>Emi</h2> <h2>Emi</h2>
<img src="https://cdn.nhcarrigan.com/yurigpt/avatars/emi.png" alt="Emi's avatar"> <img src="https://cdn.yurigpt.com/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> <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> </div>
<hr /> <hr />
<div class="character"> <div class="character">
<h2>Mira</h2> <h2>Mira</h2>
<img src="https://cdn.nhcarrigan.com/yurigpt/avatars/mira.png" alt="Mira's avatar"> <img src="https://cdn.yurigpt.com/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> <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> </div>

View File

@ -0,0 +1,12 @@
img {
width: 500px;
border-radius: 50%;
}
h2 {
font-size: 2rem;
}
p {
font-size: 1.5rem;
}

View File

@ -1 +1,3 @@
<p>home works!</p> <h1>YuriGPT</h1>
<img src="https://cdn.yurigpt.com/yurigpt.png" alt="YuriGPT Logo" />
<p>A webcomic about two girls in love.</p>

View File

@ -21,6 +21,10 @@ li {
margin: 0 10px; margin: 0 10px;
} }
img {
height: 50px;
}
#highlight { #highlight {
font-size: 1.2em; font-size: 1.2em;
background: var(--foreground); background: var(--foreground);

View File

@ -1,6 +1,6 @@
<nav> <nav>
<ul> <ul>
<li><a routerLink="/">YuriGPT</a></li> <li><a routerLink="/"><img src="https://cdn.yurigpt.com/yurigpt.png" alt="YuriGPT Logo" /></a></li>
<li><a routerLink="/about">About</a></li> <li><a routerLink="/about">About</a></li>
<li id="highlight"><a routerLink="/comic">Start Reading</a></li> <li id="highlight"><a routerLink="/comic">Start Reading</a></li>
<li><a routerLink="/characters">Characters</a></li> <li><a routerLink="/characters">Characters</a></li>