Skip to content

Commit bf03051

Browse files
committed
Updated screenshots
1 parent 166b38f commit bf03051

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

README.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
# hello-astro
22

3-
![screenshot](https://github.com/hellotham/hello-astro/raw/main/screenshot-light.png)
4-
53
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.
64

5+
![Light](https://github.com/hellotham/hello-astro/raw/main/screenshot-light.png)
6+
7+
![Dark](https://github.com/hellotham/hello-astro/raw/main/screenshot-dark.png)
8+
9+
![Lighthouse](https://github.com/hellotham/hello-astro/raw/main/lighthouse.png)
10+
711
Uses the following integrations:
812

913
- @astrojs/mdx

lighthouse.png

370 KB
Loading

screenshot-dark.png

19.9 KB
Loading

screenshot-light.png

19 KB
Loading

src/components/bloghero.astro

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
import { Icon } from 'astro-icon'
3-
import type { Frontmatter } from '../config'
3+
import { authorDetail, Frontmatter } from '../config'
44
import Categories from '../components/categories.astro'
55
import Tags from '../components/tags.astro'
66
import SVGImg from '../components/svgimg.astro'
@@ -44,9 +44,9 @@ const { frontmatter } = Astro.props
4444
<span class="flex mt-3">
4545
{frontmatter.author && (
4646
<span class="flex items-center mr-6">
47-
<SVGImg
48-
src="../svg/astro/logomark-light.svg"
49-
alt="Author profile"
47+
<Img
48+
src={authorDetail(frontmatter.author).image}
49+
alt={frontmatter.author}
5050
class="h-10 w-10 rounded-full mr-2 object-cover"
5151
/>
5252
<Icon class="w-6 h-6 mr-1 text-purple-200" pack="heroicons-outline" name="user-circle" />

0 commit comments

Comments
 (0)