--- /dev/null
+{% extends "base.html" %}
+
+{% block title %}About{% endblock %}
+
+{% block body %}
+
+<h1>About littlesong.place</h1>
+
+<p>
+Hello there, I'm <a href="/users/cfulljames">cfull</a>.  Thanks for stopping by!
+</p>
+
+<p>
+This site is meant to be a little place for your songs.  Of course, there are
+already lots of <em>big</em> places for songs out there.  But I wanted
+somewhere to share music that was free from algorithms, ads, rankings, and the
+general noise that comes with most of those big places.  A place that
+encourages and celebrates creativity, and a place for community with other
+humans.  If any of that resonates with you, then welcome!  I hope you enjoy
+your stay.
+</p>
+
+<p>
+I also love <a href="https://indreams.me">Dreams</a>, and the music community
+that formed there.  But now that live service support for Dreams has ended, and
+given the uncertain future of Media Molecule and the games industry more
+broadly, I worry that it's only a matter of time before the servers shut down
+for good.  Part of my goal with this site is to give others a place to archive
+their music from Dreams.  But beyond that, I hope it can also eventually become
+a similar platform for creativity and community of its own - albeit on a much
+smaller scale.
+</p>
+
+<p>
+The site is open source!  You can 
+<a href="https://github.com/cfulljames/littlesongplace">view it on GitHub</a>.
+</p>
+
+<h2>Contact Me!</h2>
+
+<p>
+I'm always looking for new ways to improve the site!  If you have ideas (or if
+you encounter a bug), there are a few ways you can get in touch:
+<ul>
+    <li>Open an issue on <a href="https://github.com/cfulljames/littlesongplace/issues">GitHub</a></li>
+    <li>Leave a comment on <a href="/users/cfulljames">my profile</a></li>
+    <li>Send an email to <a href="mailto:littlesongplace@gmail.com">littlesongplace@gmail.com</a></li>
+    <li>Send me (@cfulljames) a message on Discord</li>
+</ul>
+</p>
+
+{% endblock %}
 
             <!-- Navbar -->
             <div class="navbar">
                 <a href="/">Home</a>
-                <a href="/songs">Random</a>
+                <a href="/about">About</a>
                 <a href="/site-news">News</a>
+                <a href="/songs">Random</a>
 
                 <a href="/users/{{ session["username"] }}" class="nav-logged-in" id="my-profile" hidden>My Profile</a>
                 <a href="/activity" class="nav-logged-in" hidden><span id="activity-indicator" hidden></span>Activity</a>
 
 
 <h2>Hello!</h2>
 <p>
-Welcome to the little song place!
+🎶 Welcome to a little song place.  Make music, and share it with friends! ðŸŽµ
 </p>
 
+<h2>Humans</h2>
 <p>
-If you encounter a bug or have ideas for things that would make the site
-better, I'm open to any thoughts or feedback you have!  Just leave a comment on
-my <a href="/users/cfulljames">profile</a>, send me a message on Discord, or email
-<a href="mailto:littlesongplace@gmail.com">littlesongplace@gmail.com</a>. :)
+Check out the music and profiles of the fine folks below!
+{% if not session["userid"] %}If you create an account, you'll show up here too.{% endif %}
 </p>
 
-<h2>Profiles</h2>
-<p>Check out the music of the fine folks below!{% if not session["userid"] %}  If you create an account, you'll show up here too.{% endif %}</p>
-
 <div class="user-list">
     {% for user in users %}
     <div class="user-list-entry-container">
     {% endfor %}
 </div>
 
-<h2>Recently Uploaded Songs</h2>
-<p>Listen to all the newest tunes!</p>
+<h2>Hot New Tunes</h2>
+<p>Listen to the 50 latest tracks!</p>
 {% include "song-list.html" %}
 
 {% endblock %}