aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2023-10-21 00:11:24 -0700
committerPinapelz <yukais@pinapelz.com>2023-10-21 00:11:24 -0700
commit91231b2d24a04ad8aee18323b2818a40169befe8 (patch)
treefdfcbc6ceba3acdb2aa98f7178fb0adc187a7cf4 /src/pages
parente7a9e9aa9a848b2ac2dc94ebdd0ea54a7e7ef922 (diff)
change landing page
- remove projects, moved to main site this is now strictly a blog
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/index.astro16
1 files changed, 3 insertions, 13 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 03b93c9..d54d4a3 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -5,7 +5,6 @@ import Footer from "../components/Footer.astro";
import { SITE_TITLE, SITE_DESCRIPTION } from "../consts";
import { getCollection } from "astro:content";
import FormattedDate from "../components/FormattedDate.astro";
-import ProjectGrid from "../components/ProjectGrid.astro";
const posts = (await getCollection("blog")).sort(
(a, b) => a.data.pubDate.valueOf() - b.data.pubDate.valueOf()
@@ -40,7 +39,7 @@ const posts = (await getCollection("blog")).sort(
<ul>
{
posts
- .slice(-3)
+ .slice(-5)
.map((post) => (
<li>
<FormattedDate date={post.data.pubDate} />
@@ -62,18 +61,9 @@ const posts = (await getCollection("blog")).sort(
with or made. I guess its kind of like writing documentation for all the
things I've found intriguing or interesting.
</p>
- <h3>I did a thing..</h3>
- <p>
- Here are some of the things I've done/experimented with and found pretty
- cool!
- <ProjectGrid>
- <section>
- <h2>Check below for some links to more stuff!</h2>
- <iframe src="https://pinapelz.moe/" width="100%" height="500px"
- ></iframe>
- </section>
- <Footer />
+ <p>Check out the main site as well: <a href="https://pinapelz.com">pinapelz.com</a></p>
</p>
</main>
</body>
+ <Footer />
</html>
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage