Skip to content

Commit 7892873

Browse files
authored
Merge branch 'main' into main
2 parents d93a63e + 00c2646 commit 7892873

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ Internationalization support - [Template with i18n](https://tailwind-nextjs-star
4747
- [Terminals.run](https://terminals.run) - Blog site for some thoughts and records for life and technology.
4848
- [markpitblado.me](https://markpitblado.me) - Mark's personal blog about the internet, privacy, and books ([source code](https://github.com/mark-pitblado/personal-website))
4949
- [francisaguilar.co blog](https://francisaguilar.co) - Francis Aguilar's personal blog that talks about tech, fitness, and personal development.
50+
- [Min71 Dev Blog](https://min71.dev) - Personal blog about Blockchain, Development and etc. ([source code](https://github.com/mingi3442/blog))
51+
- [Bryce Yu's Blog](https://earayu.github.io/) - Bryce Yu's personal Blog about distributed system, database, and web development. ([source code](https://github.com/earayu/earayu.github.io))
5052

5153
Using the template? Feel free to create a PR and add your blog to this list.
5254

@@ -155,6 +157,12 @@ npx degit 'timlrx/tailwind-nextjs-starter-blog'
155157
yarn
156158
```
157159

160+
Please note, that if you are using Windows, you may need to run:
161+
162+
```bash
163+
set PWD="$(pwd)"
164+
```
165+
158166
## Development
159167

160168
First, run the development server:

data/projectsData.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
const projectsData = [
1+
interface Project {
2+
title: string,
3+
description: string,
4+
href?: string,
5+
imgSrc?: string,
6+
}
7+
8+
const projectsData: Project[] = [
29
{
310
title: 'A Search Engine',
411
description: `What if you could look up any information in the world? Webpages, images, videos

0 commit comments

Comments
 (0)