Skip to content

Commit 9554742

Browse files
committed
updated readme
1 parent 6670148 commit 9554742

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

README.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Cover Maker
1+
# CoverMaker
22

33
Create beautiful cover images for your next blog post
44

@@ -16,7 +16,10 @@ Create beautiful cover images for your next blog post
1616

1717
- Create beautiful cover images for your next blog post
1818
- Customize the image with your own text, colors, opacity, padding, and more
19-
- Download the image as a PNG file
19+
- Search for images from Unsplash
20+
- Select unsplash image as cover image onClick
21+
- For download unsplash image, double click on image
22+
- Download the image as a JPG
2023

2124
## Tech Stack
2225

@@ -38,7 +41,7 @@ Clone the project
3841
Go to the project directory
3942

4043
```bash
41-
cd cover-maker
44+
cd covermaker
4245
```
4346

4447
Install dependencies
@@ -63,4 +66,4 @@ Please adhere to this project's `code of conduct`.
6366

6467
## License
6568

66-
[MIT](https://choosealicense.com/licenses/mit/)
69+
[MIT](https://choosealicense.com/licenses/mit/)

components/UnsplashSearch.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default function UnsplashSearch(props: { defaultData: any, setDefaultData
1414

1515
// debounce search query to prevent api call on every keypress
1616
const debouncedSearchTerm = useDebounce(searchQuery, 500);
17-
// process.env.NEXT_PUBLIC_UNSPLASH_ACCESS_KEY,
17+
1818
// api config for unsplash
1919
const api = createApi({
2020
accessKey: `${process.env.NEXT_PUBLIC_UNSPLASH_ACCESS_KEY}`
@@ -40,7 +40,7 @@ export default function UnsplashSearch(props: { defaultData: any, setDefaultData
4040
}
4141
}
4242
, [debouncedSearchTerm]);
43-
43+
4444
// handle download image
4545
const handleDownload = (item: any) => {
4646
const a = document.createElement('a');

pages/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -354,4 +354,4 @@ export default function Home() {
354354
</main >
355355
</>
356356
)
357-
}
357+
}

0 commit comments

Comments
 (0)