Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(content): Fix blog typo + small update to Projects component section #247

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/pages/posts/blog1.md
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ This example shows how I implemented the `<Card />` component on my `index.astro

## Projects component

I created a `Projects` component to display web development projects I've worked on. In this component I used the `Card` component within a function that displays each project in it's in an unordered list. I customized the card for this component by setting it to `bordered`, with a custom padding value passed to the `padding` prop, and `noMargin` set to `true`
I created a `Projects` component to display web development projects I've worked on. In this component I used the `Card` component within a function that maps over and displays each project in an unordered list. I customized the card for this component by setting it to `bordered`, with a custom padding value passed to the `padding` prop, and `noMargin` set to `true`

```astro title="components/projects.astro {3-4}
<ul class="grid list-none gap-4 pl-0 md:grid-cols-2">
Expand Down