Skip to content

Commit

Permalink
tiny change
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsereno committed Apr 10, 2024
1 parent 134ceab commit adc2785
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/BaseHead.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interface Props {
const canonicalURL = new URL(Astro.url.pathname, Astro.site);
const { title, description, image = '/images/defaultHero.jpg' } = Astro.props;
const { title, description, image = 'images/defaultHero.jpg' } = Astro.props;
---

<!-- Global Metadata -->
Expand Down
4 changes: 2 additions & 2 deletions src/content/blog/markdown-style-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Markdown Style Guide"
description: "Here is a sample of some basic Markdown syntax that can be used when writing Markdown content in Astro."
pubDate: "Jul 01 2022"
heroImage: "/images/defaultHero.jpg"
heroImage: "images/defaultHero.jpg"
---

Here is a sample of some basic Markdown syntax that can be used when writing Markdown content in Astro.
Expand Down Expand Up @@ -39,7 +39,7 @@ Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sap

#### Output

![blog placeholder](images/blog-placeholder-about.jpg)
![blog placeholder](images/defaultHero.jpg)

## Blockquotes

Expand Down
2 changes: 1 addition & 1 deletion src/content/blog/xcode-previews.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Get Xcode Previews Working"
description: "A quick rundown on common Xcode Preview issues & resolution"
pubDate: "Apr 10 2024"
heroImage: "/images/defaultHero.jpg"
heroImage: "images/defaultHero.jpg"
---

A quick rundown on common Xcode Preview issues & their resolution
Expand Down
2 changes: 1 addition & 1 deletion src/pages/about.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Layout from '../layouts/BlogPost.astro';
title="About Me"
description="Lorem ipsum dolor sit amet"
pubDate={new Date('August 08 2021')}
heroImage="/images/defaultHero.jpg"
heroImage="images/defaultHero.jpg"
>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
Expand Down
2 changes: 1 addition & 1 deletion src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ header a.nav:hover:before {
color: transparent;
background-repeat: no-repeat;
background-position: center;
/* background-image: url(../images/ios.svg); */
/* background-image: url(..images/ios.svg); */
width: 120px;
height: 40px;
opacity: 0.95;
Expand Down

0 comments on commit adc2785

Please sign in to comment.