Skip to content

Commit

Permalink
font size
Browse files Browse the repository at this point in the history
  • Loading branch information
namishh committed Oct 25, 2024
1 parent d548e8f commit a9ed728
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 15 deletions.
20 changes: 10 additions & 10 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ let a = [blogs[0], blogs[1], blogs[2], blogs[3]];
<img
src="https://avatars.githubusercontent.com/u/68964499?v=4"
alt="pfp"
class="h-12 w-12 rounded-full border-[1px] border-fg"
class="h-10 md:h-12 w-10 md:w-12 rounded-full border-[1px] border-fg"
/>
<h1 class="text-3xl text-left text-fg self-end">Namish</h1>
<h1 class="text-xl md:text-3xl text-left text-fg self-end">Namish</h1>
<h1 class="text-lg text-gray-500 text-left self-end">
17M (he/him)
</h1>
</div>
<p class="mt-8 text-[18px] md:text-[20px] text-bright">
<p class="mt-8 text-[16px] md:text-[20px] text-bright">
Hello! I am Namish, you can call me <i class="text-fg">nam</i> or
still refer me via my old internet alias, <i class="text-fg"
>chadcat7</i
>.
</p>
<p class="mt-4 text-[18px] md:text-[20px] text-bright">
<p class="mt-4 text-[16px] md:text-[20px] text-bright">
An above average programmer. Likes minimalism, <span
class="text-fg">neovim</span
>, <span class="text-fg">arch</span> and <span class="text-fg"
Expand All @@ -43,8 +43,8 @@ let a = [blogs[0], blogs[1], blogs[2], blogs[3]];
><a href="/blog" class="text-fg underline">blogs</a></span
> in my free time. I also upload some of my <a href="https://notes.namishh.me" class="text-fg underline">programming notes</a>.
</p>
<p class="mt-4 text-[18px] md:text-[20px] text-bright">
<span class="">View my </span> <a href="/resume" class="text-fg underline">profresionally unprofressional resume</a>.
<p class="mt-4 text-[16px] md:text-[20px] text-bright">
<span class="">View my </span> <a href="/resume" class="text-fg underline">resume</a>.
</p>
<div class="my-8 h-[2px] px-16 bg-bg3 inline-block"></div>
<h1 class="text-xl md:text-2xl text-fg">
Expand All @@ -54,7 +54,7 @@ let a = [blogs[0], blogs[1], blogs[2], blogs[3]];
>
</h1>

<p class="mt-2 text-[18px] md:text-[20px] text-bright">
<p class="mt-2 text-[16px] md:text-[20px] text-bright">
Here are some projects worth showing. You can find all of them <a
href="/stuff"
class="text-fg underline">here.</a
Expand Down Expand Up @@ -142,12 +142,12 @@ let a = [blogs[0], blogs[1], blogs[2], blogs[3]];
{
a.map((i, j) => {
return (
<li class="cursor-pointer my-6 w-full">
<li class="cursor-pointer md:my-6 my-3 w-full">
<a
class="flex justify-between w-full"
href={`/blog/${i.file.split("/").pop().split(".").shift()}`}
>
<p class="text-fg text-[18px] md:text-[20px]">
<p class="text-fg text-[16px] md:text-[20px]">
{j + 1}. {i.frontmatter.title}
</p>
<span class="mr-2 text-lg text-gray-500">
Expand All @@ -160,7 +160,7 @@ let a = [blogs[0], blogs[1], blogs[2], blogs[3]];
}
</ul>
<div class="my-8 h-[2px] px-16 bg-bg3 inline-block"></div>
<p class="text-[18px] md:text-[20px] text-bright">
<p class="text-[16px] md:text-[20px] text-bright">
I am online at <a
target="_blank"
href="https://discord.com/users/715825910611443722"
Expand Down
10 changes: 6 additions & 4 deletions src/pages/me.astro
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ const webframeworks = [
"React",
"NextJS",
"Remix",
"SolidJS",
"Solid Start",
"Svelte",
"SvelteKit",
"Astro",
Expand All @@ -58,9 +60,9 @@ import Quote from "../components/Quote.astro";
<img
src="https://avatars.githubusercontent.com/u/68964499?v=4"
alt="pfp"
class="h-12 w-12 rounded-full border-[1px] border-fg"
class="h-10 md:h-12 w-10 md:w-12 rounded-full border-[1px] border-fg"
/>
<h1 class="text-3xl text-left text-fg self-end">Namish</h1>
<h1 class="text-xl md:text-3xl text-left text-fg self-end">Namish</h1>
<h1 class="text-lg text-gray-500 text-left self-end">
17M (he/him)
</h1>
Expand All @@ -69,7 +71,7 @@ import Quote from "../components/Quote.astro";
num-ish ⋅ mythological god (south east asia)
</p>
</div>
<p class="mt-8 text-[18px] md:text-[20px] text-bright">
<p class="mt-8 text-[16px] md:text-[20px] text-bright">
Just another dude who chronically loves to program literally everything in anything. While mainly <span class="text-fg"> creating for the web </span>, most of my personal favourite projects are <span class="text-fg"> low level. </span> Apart from that I'm also knd of proficient in the piano and playing tennis.

</p>
Expand Down Expand Up @@ -149,7 +151,7 @@ import Quote from "../components/Quote.astro";
<span class="text-gray-500">My</span> Setup
</h1>
<ul
class="list-decimal leading-[2.6rem] list-inside mt-4 text-[16px] md:text-[18px] text-bright"
class="list-decimal leading-[2.6rem] list-inside mt-4 text-[16px] md:text-[16px] text-bright"
>
<li>
Operating System: <span class="text-fg">arch // nix os</span
Expand Down
2 changes: 1 addition & 1 deletion src/pages/stuff.astro
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const showoff = [
{
name: "floww",
desc: "redefining the way to collaborate with people on youtube channels.",
tech: [{ name: "next", color: "bg-blue-300" }, { name: "wip" }],
tech: [{ name: "solid start", color: "bg-blue-300" }, { name: "wip" }],
link: "https://github.com/tryfloww"
},
{
Expand Down

0 comments on commit a9ed728

Please sign in to comment.