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

Minor fixes #334

Merged
merged 5 commits into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
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 .github/ISSUE_TEMPLATE/nextra-feedback.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Nextra Feedback
name: Docs Feedback
description: Report errors you find in our documentation or ideas for enhancing our documentation.
title: "[Feedback] "
labels: ["nextra-feedback"]
Expand Down
6 changes: 3 additions & 3 deletions components/ResourceHub/Resources.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ export const Resources = (): ReactElement => {
<TextField
className={css.searchField}
variant='outlined'
placeholder='Search by name, description or tag'
placeholder='Search by name, description, or tag'
InputProps={{
startAdornment: (
<InputAdornment position='start'>
Expand All @@ -278,7 +278,7 @@ export const Resources = (): ReactElement => {
}}
fullWidth
/>
<Typography mt={2}>
<Typography textAlign={['center', 'left']} mt={2}>
<Typography component='span' color='primary.light'>
Example:
</Typography>{' '}
Expand Down Expand Up @@ -437,7 +437,7 @@ export const Resources = (): ReactElement => {
mx='auto'
textAlign='center'
>
Listings are not endorsements and are only for informational
Listings are not endorsements and are only for educational
purposes.
</Typography>
</Grid>
Expand Down
10 changes: 10 additions & 0 deletions components/ResourceHub/community-resources.json
Original file line number Diff line number Diff line change
Expand Up @@ -147,5 +147,15 @@
"Tutorial",
"Safe Core SDK"
]
},
{
"name": "How to Deploy Safe Contracts",
"url": "https://www.zlog.in/post/deploy-safe-contracts/",
"type": "Blog Post",
"abstract": "A tutorial that explains how to deploy Safe contracts on a blockchain.",
"tags": [
"Tutorial",
"Safe Smart Account"
]
}
]
2 changes: 1 addition & 1 deletion components/YouTube/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const YouTubeEmbed: React.FC<{ embedId: string }> = ({ embedId }) => (
<iframe
width='853'
height='480'
src={`https://www.youtube.com/embed/${embedId}`}
src={`https://www.youtube-nocookie.com/embed/${embedId}`}
allow='accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture'
allowFullScreen
title='Embedded youtube'
Expand Down
2 changes: 1 addition & 1 deletion pages/what-is-safe.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description: Everything you need to know to start building on Safe.
---

# Safe
# Welcome

[Safe](https://safe.global) brings digital ownership of accounts to everyone by building universal and open contract standards for the custody of digital assets, data, and identity.

Expand Down
Loading