17 lines
709 B
TypeScript
17 lines
709 B
TypeScript
export default function AboutPage() {
|
|
return (
|
|
<div className="max-w-prose mx-auto space-y-6">
|
|
<h1 className="text-3xl font-bold">About Elmeg</h1>
|
|
<p>
|
|
Elmeg is a community-driven archive for Goose, dedicated to documenting every show, song, and performance.
|
|
</p>
|
|
<p>
|
|
Founded in 2025, Elmeg aims to provide the most comprehensive stats and the highest quality data for fans.
|
|
</p>
|
|
<h2 className="text-xl font-bold">The Archives</h2>
|
|
<p>
|
|
Our data includes setlists, reviews, and community ratings for shows dating back to 2014.
|
|
</p>
|
|
</div>
|
|
)
|
|
}
|