diff options
author | 2021-09-22 01:56:47 +1000 | |
---|---|---|
committer | 2021-09-21 08:56:47 -0700 | |
commit | 427bc83d1d5bbc3654aa6ae6e597344738eaa2e1 (patch) | |
tree | 994b10ffd63d9d3f17bb19b97037af7cfa2a1ff1 /examples/portfolio/src | |
parent | 3d12b76c636e7cb9f0440d2c50367eba95dddbf6 (diff) | |
download | astro-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.astro | 4 |
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> |