summaryrefslogtreecommitdiff
path: root/examples/portfolio/src
diff options
context:
space:
mode:
authorGravatar Tim Jensen <tim@studiovoyager.com.au> 2021-09-22 01:56:47 +1000
committerGravatar GitHub <noreply@github.com> 2021-09-21 08:56:47 -0700
commit427bc83d1d5bbc3654aa6ae6e597344738eaa2e1 (patch)
tree994b10ffd63d9d3f17bb19b97037af7cfa2a1ff1 /examples/portfolio/src
parent3d12b76c636e7cb9f0440d2c50367eba95dddbf6 (diff)
downloadastro-427bc83d1d5bbc3654aa6ae6e597344738eaa2e1.tar.gz
astro-427bc83d1d5bbc3654aa6ae6e597344738eaa2e1.tar.zst
astro-427bc83d1d5bbc3654aa6ae6e597344738eaa2e1.zip
Fix typo (#1404)
Portfolio missing t.
Diffstat (limited to 'examples/portfolio/src')
-rw-r--r--examples/portfolio/src/pages/index.astro4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/portfolio/src/pages/index.astro b/examples/portfolio/src/pages/index.astro
index dbf6a9486..8c1e8ab23 100644
--- a/examples/portfolio/src/pages/index.astro
+++ b/examples/portfolio/src/pages/index.astro
@@ -4,7 +4,7 @@ import MainHead from '../components/MainHead.astro';
import Button from '../components/Button/index.jsx';
import Nav from '../components/Nav/index.jsx';
import Footer from '../components/Footer/index.jsx';
-import PorfolioPreview from '../components/PortfolioPreview/index.jsx';
+import PortfolioPreview from '../components/PortfolioPreview/index.jsx';
// Data Fetching: List all Markdown posts in the repo.
const projects = Astro.fetchContent('./project/**/*.md');
@@ -218,7 +218,7 @@ const featuredProject = projects[0];
<div class="grid">
<div class="section">
<h3 class="sectionTitle">Selected Work</h3>
- <PorfolioPreview project={featuredProject} />
+ <PortfolioPreview project={featuredProject} />
<div class="tac mt4">
<a href="/projects">
<Button>View All</Button>