Code for my personal website
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: draft learning post

+11
+1
src/content/blog/learnings-over-the-past-year/index.mdx
··· 2 2 title: 'Learnings over the past year' 3 3 description: 'Things I have come to realize and learn in the last 1 year.' 4 4 date: 'Oct 10 2024' 5 + draft: true 5 6 --- 6 7 7 8 May of 2022 is when I finished my university education in the field of Computer Systems Engineering.
+10
src/pages/index.astro
··· 60 60 <h5 class='font-semibold text-black dark:text-white'>Latest posts</h5> 61 61 <Link href='/blog'> View all posts </Link> 62 62 </div> 63 + { 64 + blog.length === 0 && ( 65 + <p class='animate'>No posts yet. Check back later!</p> 66 + ) 67 + } 63 68 <ul class='flex flex-col gap-4'> 64 69 { 65 70 blog.map((post) => ( ··· 78 83 </h5> 79 84 <Link href='/projects'> View all projects </Link> 80 85 </div> 86 + { 87 + projects.length === 0 && ( 88 + <p class='animate'>No posts yet. Check back later!</p> 89 + ) 90 + } 81 91 <ul class='flex flex-col gap-4'> 82 92 { 83 93 projects.map((project) => (