diff --git a/src/components/Buffer.astro b/src/components/Buffer.astro new file mode 100644 index 0000000..8542700 --- /dev/null +++ b/src/components/Buffer.astro @@ -0,0 +1,5 @@ +--- +const { id } = Astro.props; +--- + +
diff --git a/src/components/CommandLine.astro b/src/components/CommandLine.astro index dbef499..27603bc 100644 --- a/src/components/CommandLine.astro +++ b/src/components/CommandLine.astro @@ -1,20 +1,32 @@
-
diff --git a/src/pages/index.astro b/src/pages/index.astro index bb73c4f..9ca9a79 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,56 +1,125 @@ --- import BaseHead from "../components/BaseHead.astro"; -import Footer from "../components/Footer.astro"; import { SITE_TITLE, SITE_DESCRIPTION } from "../consts"; import Link from "../components/Link.astro"; import FormattedDate from "../components/FormattedDate.astro"; +import Footer from "../components/Footer.astro"; +import LuaLine from "../components/LuaLine.astro"; import { getBlogs } from "../content/blog"; const posts = (await getBlogs()).sort( (a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf(), ); +const current = new Date(); +const currentMonth = current.getMonth(); +const currentYear = `${current.getUTCFullYear() - 1}`.substring(2); --- - + - -
-

kennethnym

-
-
-

dumping ground for my thoughts. all opinions are my own.

-

current projects:

- -

my thoughts:

-