From 8d330eff9563c7bb0d5f1cebe7bbc2586e913f6d Mon Sep 17 00:00:00 2001 From: Fernando Araoz Date: Sun, 26 Jan 2025 07:14:11 -0500 Subject: [PATCH] feat: improve styles --- public/img/logos/archlinux-logo.svg | 1 + public/img/logos/neovim-mark.svg | 27 +++++++++++++++++++ public/img/logos/tmux-logo.svg | 1 + src/components/Blog/Sh.astro | 2 +- src/components/Navigation.astro | 15 ++++++----- src/components/Sidebar.astro | 36 +++++++++++++++++++++++--- src/components/index/EnBlogIndex.astro | 3 ++- src/layouts/BlogLayout.astro | 2 +- src/layouts/NavigationLayout.astro | 2 +- src/pages/index.astro | 2 +- tailwind.config.mjs | 1 + 11 files changed, 77 insertions(+), 15 deletions(-) create mode 100644 public/img/logos/archlinux-logo.svg create mode 100644 public/img/logos/neovim-mark.svg create mode 100644 public/img/logos/tmux-logo.svg diff --git a/public/img/logos/archlinux-logo.svg b/public/img/logos/archlinux-logo.svg new file mode 100644 index 0000000..949b5c5 --- /dev/null +++ b/public/img/logos/archlinux-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/logos/neovim-mark.svg b/public/img/logos/neovim-mark.svg new file mode 100644 index 0000000..46c5eb8 --- /dev/null +++ b/public/img/logos/neovim-mark.svg @@ -0,0 +1,27 @@ + + + neovim-mark@2x + Created with Sketch (http://www.bohemiancoding.com/sketch) + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/img/logos/tmux-logo.svg b/public/img/logos/tmux-logo.svg new file mode 100644 index 0000000..7d5d04f --- /dev/null +++ b/public/img/logos/tmux-logo.svg @@ -0,0 +1 @@ + diff --git a/src/components/Blog/Sh.astro b/src/components/Blog/Sh.astro index 6d56927..11abc29 100644 --- a/src/components/Blog/Sh.astro +++ b/src/components/Blog/Sh.astro @@ -2,4 +2,4 @@ var {code} = Astro.props; --- -
{code}
\ No newline at end of file +
{code}
diff --git a/src/components/Navigation.astro b/src/components/Navigation.astro index 57164de..bfdb13f 100644 --- a/src/components/Navigation.astro +++ b/src/components/Navigation.astro @@ -1,19 +1,22 @@ -
+
diff --git a/src/components/Sidebar.astro b/src/components/Sidebar.astro index 0c781dd..a7ad365 100644 --- a/src/components/Sidebar.astro +++ b/src/components/Sidebar.astro @@ -1,13 +1,20 @@ -
+

- Fernando Araoz +

+ Fernando Araoz +

-

- Human software engineer based in Peru +

+ I'm a Human software engineer based in Peru, + passionate about webdev, devops and sysadmin + stuff. +
+ And sometimes I may find inspiration to write for + my blog.


@@ -17,4 +24,25 @@ My sideprojects
+
+ + Proudly written in + + + Arch Linux logo + + + {`Neovim + +
diff --git a/src/components/index/EnBlogIndex.astro b/src/components/index/EnBlogIndex.astro index 3eb3ea6..a3506f8 100644 --- a/src/components/index/EnBlogIndex.astro +++ b/src/components/index/EnBlogIndex.astro @@ -11,7 +11,8 @@ const allPosts = (await Astro.glob("../../pages/blog/en/*.{md,mdx}"))

- Things I've thought about, about programming. + Things that come to my mind about + software.

    diff --git a/src/layouts/BlogLayout.astro b/src/layouts/BlogLayout.astro index f6e2288..96c054c 100644 --- a/src/layouts/BlogLayout.astro +++ b/src/layouts/BlogLayout.astro @@ -28,7 +28,7 @@ lang = lang ?? "en"; -
    +
    { frontmatter?.title && ( diff --git a/src/layouts/NavigationLayout.astro b/src/layouts/NavigationLayout.astro index 86c1392..0f87603 100644 --- a/src/layouts/NavigationLayout.astro +++ b/src/layouts/NavigationLayout.astro @@ -2,7 +2,7 @@ import Navigation from "../components/Navigation.astro"; --- -
    +
    diff --git a/src/pages/index.astro b/src/pages/index.astro index 4f7c2dc..14d2b2b 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -23,7 +23,7 @@ import EnBlogIndex from "../components/index/EnBlogIndex.astro"; type="text/css" href="https://unpkg.com/@phosphor-icons/web@2.1.1/src/regular/style.css" /> - + diff --git a/tailwind.config.mjs b/tailwind.config.mjs index 94e5866..eec3937 100644 --- a/tailwind.config.mjs +++ b/tailwind.config.mjs @@ -11,6 +11,7 @@ export default { fontFamily: { "etoile": ["var(--font-display)"], "display": ["var(--font-display)"], + "body": ["var(--font-body)"], } }, },