Skip to content

Commit

Permalink
replace coders51 title and other fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
abjunior92 committed Apr 12, 2024
1 parent d88abaa commit 681d0f9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { XIcon } from "./icons/XIcon";
<img
id="footer-logo"
src="/assets/logo.png"
alt="Coders51 Logo"
alt="coders51 Logo"
class="w-28"
transition:persist
/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import DarkModeToggle from "src/components/DarkModeToggle";
<img
id="header-logo"
src="/assets/logo_white_big.png"
alt="Coders51 Logo"
alt="coders51 Logo"
class="xl:w-40 w-32"
/>
</a>
Expand Down
5 changes: 3 additions & 2 deletions src/consts.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Place any global data in this file.
// You can import this data from anywhere in your site by using the `import` keyword.

export const SITE_TITLE = "Coders51 Blog";
export const SITE_DESCRIPTION = "Welcome to coders51 blog";
export const SITE_TITLE = "coders51 👽 Blog";
export const SITE_DESCRIPTION =
"A blog of a team of software experts with technological leadership and a consulting partner for the management and governance of complex software architectures";
2 changes: 1 addition & 1 deletion src/content/blog/first-post.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: 'ENDU: Frontend Project setup - how to start working on it'
title: 'Frontend Project setup - how to start working on it'
description: "Lorem ipsum dolor sit, amet consectetur adipisicing elit. Ex fugit suscipit illum excepturi repellat vel, itaque nostrum debitis inventore veritatis recusandae, animi distinctio at voluptates ratione consequuntur minus voluptate eum!"
author: Andrea Junior Berselli
pubDate: '03-25-2024 10:00'
Expand Down
6 changes: 2 additions & 4 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,14 @@ import { getCollection } from "astro:content";
import FormattedDate from "../components/FormattedDate.astro";
import BaseLayout from "../layouts/BaseLayout.astro";
import Author from "src/components/Author.astro";
import { SITE_TITLE, SITE_DESCRIPTION } from "src/consts";
const posts = (await getCollection("blog")).sort(
(a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf()
);
---

<BaseLayout
title="Coders51 👽 Blog"
description="A blog of a team of software experts with technological leadership and a consulting partner for the management and governance of complex software architectures"
>
<BaseLayout title={SITE_TITLE} description={SITE_DESCRIPTION}>
<main>
<section class="flex flex-col gap-4">
{
Expand Down

0 comments on commit 681d0f9

Please sign in to comment.