Skip to content

Commit

Permalink
daily change
Browse files Browse the repository at this point in the history
  • Loading branch information
thelocalgodd committed Apr 29, 2024
1 parent 022fd14 commit 2b8019f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/components/BlogPost.astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const {title, date, post} = Astro.props;
---

<a href=`${post}`>
<li class="list-none border-2 border-solid border-l-slate-800 my-2 flex justify-between bg-zinc-300 hover:bg-zinc-400 px-3 w-[350px] mx-auto md:w-auto dark:bg-zinc-600">
<li class="list-none border-l-2 border-l-solid border-l-slate-800 dark:border-l-white border border-solid border-zinc-600 my-2 flex justify-between bg-zinc-300 hover:bg-zinc-400 px-3 w-[350px] mx-auto md:w-auto dark:bg-inherit">
<p>{title}</p>
<p class="text-zinc-500 dark:text-zinc-300">{date}</p>
</li>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const year = date.getFullYear();
>
<div id="left" class="">
<p>&copy; {year} | thelocalgodd</p>
<p class="text-zinc-500">astro | tailwind | github pages</p>
<p class="text-zinc-400">astro | tailwind | github pages</p>

<div class="border border-dashed border-zinc-600 w-fit px-5 rounded-full mt-2">
<p>
Expand All @@ -21,7 +21,7 @@ const year = date.getFullYear();
</div>
</div>
<div id="right" aria-label="footer, right side" class="text-right">
[ 速度 ]
<p class="text-zinc-500">[ 速度 ]</p>
<p id="heading" aria-label="source code link">
<a aria-label="source code link" href="https://github.com/thelocalgodd" target="_blank">
<u class="underline-offset-4">
Expand Down
2 changes: 1 addition & 1 deletion src/components/Navbar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const currentPath = pathname.slice(1);

<ul class="flex items-center md:justify-start justify-center text-lg">
<li
class="flex items-center justify-center rounded-3xl"
class="flex items-center justify-center rounded-full"
>
<a href="/" class="mx-3" id={currentPath === "" ? "active" : ""}>
home
Expand Down
2 changes: 1 addition & 1 deletion src/pages/blog.astro
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import BaseLayout from "../layouts/BaseLayout.astro";
class="p-5 mx-auto md:mx-0 w-[250px] my-14 border border-solid border-zinc-300 rounded-xl"
>
<p>
<span class="text-xl font-semibold"> { postCount } Posts </span>
<span class="font-semibold"> { postCount } Posts </span>
<hr class="border border-dashed border-zinc-600 my-2">
<span class="text-sm bg-green-600 text-white px-4 p-[2px] rounded-full">welcome to my blog.</span>
<br>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const pageTitle = "tlg | hello world";
my name is Vincent Kwaku Kpemlie,
<br />
currently a CS major at <a href="https://knust.edu.gh" target="_blank">
<u class="underline-offset-2">KNUST, Kumasi.</u>
<u class="underline-offset-2">KNUST, Kumasi</u>.
</strong>
<br /> <br />
aspiring to be a cybersecurity
Expand Down
2 changes: 1 addition & 1 deletion src/pages/interesting.astro
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const linksList = links.split(", ");
<BaseLayout pageTitle="tlg | interesting stuff">
<section id="blog flex items-center">
<div class="w-[310px] my-10 mx-auto md:mx-0 border border-solid border-zinc-700 rounded-xl p-4">
<p>Interesting Stuff </p>
<p class="font-bold">Interesting Stuff </p>
<hr class="border border-1 border-zinc-600 dark:border-zinc-400 my-2">
This is a collection of cool stuff, <br>
that I have found on the internet, <br>
Expand Down

0 comments on commit 2b8019f

Please sign in to comment.