diff --git a/src/components/Blogs.astro b/src/components/Blogs.astro new file mode 100644 index 0000000..b8b2c0e --- /dev/null +++ b/src/components/Blogs.astro @@ -0,0 +1,154 @@ +--- +// TODO: List some projects +const projects = [ + { + name: "Blog", + url: "/blog", + color: "var(--ctp-lavender)", + }, + +]; +--- + +
+
+

Blog

+
+ { + projects.map((project) => ( + + + {project.name} + + + + + )) + } +
+
+
+ + diff --git a/src/content/blog/fourth-porst.md b/src/content/blog/fourth-porst.md new file mode 100644 index 0000000..7046e67 --- /dev/null +++ b/src/content/blog/fourth-porst.md @@ -0,0 +1,9 @@ +--- +title: "My Fourth Blog Post" +date: 2025-10-16 +description: "This is my fourth blog post" +--- + +# This is an example blog post. + +This is the content of my fourth example blog post. diff --git a/src/content/blog/second-post.md b/src/content/blog/second-post.md new file mode 100644 index 0000000..f51cad2 --- /dev/null +++ b/src/content/blog/second-post.md @@ -0,0 +1,9 @@ +--- +title: "My Second Blog Post" +date: 2025-10-16 +description: "This is my second blog post" +--- + +# This is an example blog post. + +This is the content of my second example blog post. diff --git a/src/content/blog/third-porst copy.md b/src/content/blog/third-porst copy.md new file mode 100644 index 0000000..1add0b5 --- /dev/null +++ b/src/content/blog/third-porst copy.md @@ -0,0 +1,9 @@ +--- +title: "My Third Blog Post" +date: 2025-10-16 +description: "This is my third blog post" +--- + +# This is an example blog post. + +This is the content of my third example blog post. diff --git a/src/pages/index.astro b/src/pages/index.astro index 999a8c8..92a2a3c 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -7,6 +7,7 @@ import WaveDivider from "../components/WaveDivider.astro"; import Webring from "../components/Webring.astro"; import SpotifyNowPlaying from "../components/SpotifyNowPlaying.astro"; import Socials from "../components/Socials.astro"; +import Blogs from "../components/Blogs.astro"; // TODO: Fill in your preferences. const variables = { @@ -21,7 +22,7 @@ const variables = { - + diff --git a/src/pages/portal-page.astro b/src/pages/portal-page.astro new file mode 100644 index 0000000..e69de29