Skip to content

Commit

Permalink
Updated screenshots
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristineTham committed Sep 4, 2022
1 parent 166b38f commit bf03051
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# hello-astro

![screenshot](https://github.com/hellotham/hello-astro/raw/main/screenshot-light.png)

Hello Astro is a full featured [Astro](https://astro.build) corporate/marketing/blog starter theme written in Typescript and TailwindCSS. It supports Markdown and MDX based pages and blog posts.

![Light](https://github.com/hellotham/hello-astro/raw/main/screenshot-light.png)

![Dark](https://github.com/hellotham/hello-astro/raw/main/screenshot-dark.png)

![Lighthouse](https://github.com/hellotham/hello-astro/raw/main/lighthouse.png)

Uses the following integrations:

- @astrojs/mdx
Expand Down
Binary file added lighthouse.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshot-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshot-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions src/components/bloghero.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
import { Icon } from 'astro-icon'
import type { Frontmatter } from '../config'
import { authorDetail, Frontmatter } from '../config'
import Categories from '../components/categories.astro'
import Tags from '../components/tags.astro'
import SVGImg from '../components/svgimg.astro'
Expand Down Expand Up @@ -44,9 +44,9 @@ const { frontmatter } = Astro.props
<span class="flex mt-3">
{frontmatter.author && (
<span class="flex items-center mr-6">
<SVGImg
src="../svg/astro/logomark-light.svg"
alt="Author profile"
<Img
src={authorDetail(frontmatter.author).image}
alt={frontmatter.author}
class="h-10 w-10 rounded-full mr-2 object-cover"
/>
<Icon class="w-6 h-6 mr-1 text-purple-200" pack="heroicons-outline" name="user-circle" />
Expand Down

0 comments on commit bf03051

Please sign in to comment.