Skip to content

Commit

Permalink
update logos
Browse files Browse the repository at this point in the history
  • Loading branch information
ezzabuzaid committed Nov 18, 2023
1 parent 6f8edaa commit 94baede
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 42 deletions.
2 changes: 1 addition & 1 deletion opensearch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<ShortName>Writer.sh</ShortName>
<LongName>Writer.sh: The developer home</LongName>
<Description>Search for articles on Writer.sh</Description>
<Image height="16" width="16" type="image/svg+xml">https://writer.sh/favicon.svg</Image>
<Image height="16" width="16" type="image/svg+xml">https://writer.sh/favicon.png</Image>
<Url type="text/html" template="https://writer.sh/search/?q={searchTerms}"/>
<Contact>ezzabuzaid@hotmail.com</Contact>
<Query role="example" searchTerms="Build TypeAhead Using RxJS" />
Expand Down
Binary file added public/assets/logo.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 0 additions & 32 deletions public/favicon.svg

This file was deleted.

Binary file added src/assets/logo.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { LOGO_IMAGE, SITE } from "@config";
import LinkButton from "./LinkButton.astro";
import { Image } from "astro:assets";
import logoSVG from "../assets/logo.svg";
import logoSVG from "../assets/logo.png";
const activeNav = Astro.url.pathname.split("/")[1];
---
Expand Down
5 changes: 2 additions & 3 deletions src/components/Sidebar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { LOGO_IMAGE, SITE } from "@config";
import getSortedPosts from "@utils/getSortedPosts";
import { Image } from "astro:assets";
import logoSVG from "../assets/logo.svg";
import logoSVG from "../assets/logo.png";
import SearchBar from "./Search";
const allPosts = await getSortedPosts();
Expand Down Expand Up @@ -40,8 +40,7 @@ const posts = await getPublishedPosts();
<p class="mb-2 font-bold">Connect:</p>
<Socials />
<div class="my-1"></div>
<a class="text-sm" href="https://feeds.feedburner.com/writersh"
>- <span class="underline">RSS Feed</span></a
<a class="text-sm" href="./rss.xml">- <span class="underline">RSS Feed</span></a
>
<a class="text-sm" href="https://twitter.com/ezzabuzaid"
>- <span class="underline">Twitter Account</span></a
Expand Down
8 changes: 4 additions & 4 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import type { Site, SocialObjects } from "./types";
export const SITE: Site = {
website: "https://writer.sh/",
author: "Ezzabuzaid",
desc: "I'm Senior Software Engineer and a Technical Writer with a keen interest in merging technology and communication. Passionate about software development and committed to reading and lifelong learning.",
title: "Writer.sh - Software Engineering Blog",
ogImage: "logo.svg",
title: "Writer.sh - Developer's Journey",
desc: "Writer.sh showcases inspiring tales of developers who forged their own way, from unconventional beginnings to entrepreneurial triumphs in the tech realm.",
ogImage: "logo.png",
lightAndDarkMode: false,
};

Expand Down Expand Up @@ -44,7 +44,7 @@ export const SOCIALS: SocialObjects = [
},
{
name: "RSSFeed",
href: "https://feeds.feedburner.com/writersh",
href: "./rss.xml",
linkTitle: `Subscribe to my RSS Feed`,
active: false,
},
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const socialImageURL = new URL(ogImage, Astro.url.origin).href;
<meta name="msvalidate.01" content="028AB3230C1387CBBF8E25014AAB09FE" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
<link
rel="search"
type="application/opensearchdescription+xml"
Expand Down

0 comments on commit 94baede

Please sign in to comment.