From 64cd7fc83d43a0ad7db1b51214291736bd245b44 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Fri, 28 Jun 2024 20:31:02 -0400 Subject: Guestbook overhaul; Comments; New post; Updated packages --- src/pages/index.astro | 91 ++++++++++++++++++++++++++++++++++++--------------- 1 file changed, 64 insertions(+), 27 deletions(-) (limited to 'src/pages/index.astro') diff --git a/src/pages/index.astro b/src/pages/index.astro index edae2ab..936ce8e 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -3,40 +3,46 @@ import Layout from '../layouts/Default.astro'; import { Icon } from 'astro-icon/components' import { Image } from 'astro:assets'; import { getCollection } from "astro:content"; +import projects from "../data/projects.json"; import Profile from '../images/Alee.png'; import '../styles/index.css'; +import '../styles/Page.css'; +import "../styles/cards.css"; import { formatDate } from "../util"; const allBlogPosts = (await getCollection('blog')).sort((a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf()).slice(0, 10); +const featuredProjects = projects.filter(project => project.featured); --- -
-
- Andrew Lee -

Hey, I'm Andrew Lee!

- -
-

19 Years Old

-

Student at Pearson Electrotechnology Centre

-

Living in Montreal, Quebec, Canada

-
-
-

+
+
+
+ Andrew Lee +

Hey, I'm Andrew Lee!

+ +
+

19 Years Old

+

Student at Pearson Electrotechnology Centre

+

Living in Montreal, Quebec, Canada

+
+
@@ -44,7 +50,7 @@ const allBlogPosts = (await getCollection('blog')).sort((a, b) => b.data.pubDate

About me

Hey, I am Andrew Lee, a person who has a passion with computers. - I am currently a student at a vocational school in Pearson Electrotechnology Centre. + I am currently a student at a trade school to get my DEP for IT. For years, I have been into programming, tinkering with virtual machines, and messing with Linux.

@@ -70,7 +76,7 @@ const allBlogPosts = (await getCollection('blog')).sort((a, b) => b.data.pubDate
  • Model: DS918+
  • CPU: Intel Celeron J3455
  • RAM: 8 GB
  • -
  • Storage: 15 TB (3x5TB, 1x4TB)
  • +
  • Storage: 15 TB (3x6TB, 1x4TB)
  • Vultr (Web Server)

      @@ -98,5 +104,36 @@ const allBlogPosts = (await getCollection('blog')).sort((a, b) => b.data.pubDate ))}
    +
    + +
    + -- cgit v1.2.3