chore: clean up nav styling

This commit is contained in:
2025-07-15 15:58:51 -07:00
parent 6c02df508b
commit 12e3c5b510
4 changed files with 33 additions and 13 deletions

View File

@ -1 +1,19 @@
<p>about works!</p>
<h1>YuriGPT</h1>
<p>
YuriGPT is a webcomic about two girls in an online relationship, and all of
the zany antics that stem from that.
</p>
<p>
Because of this, our comics take the format of online chat conversations,
rather than a traditional comic. This may feel strange to you, but we are
hopeful that you come to love the story we tell.
</p>
<p>
We publish a new comic every Monday, and offer an RSS feed so you can use your
favourite application to stay updated.
</p>
<p>
If you love our comic, hate our comic, want to complain about something, or
are just looking for your own companion, we invite you to
<a href="https://chat.nhcarrigan.com" target="_blank">join our community</a>.
</p>

View File

@ -1,10 +1,16 @@
import { Component } from '@angular/core';
/**
* @copyright nhcarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
import { Component } from "@angular/core";
@Component({
selector: 'app-about',
imports: [],
templateUrl: './about.html',
styleUrl: './about.css'
imports: [],
selector: "app-about",
styleUrl: "./about.css",
templateUrl: "./about.html",
})
export class About {