Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Ujjwal807 authored Oct 4, 2023
2 parents 8fdf842 + 470ca5e commit aff0d70
Show file tree
Hide file tree
Showing 11 changed files with 2,577 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
200.html
.idea
package-lock.json
yarn.lock
node_modules
2 changes: 1 addition & 1 deletion 404.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
Expand Down
16 changes: 16 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,22 @@ git push origin YourBranchName

---

## 🍃 Running tailwindcss in environment watch mode

Enter the following command in your terminal:

```bash
yarn dlx tailwindcss -i global.css -o index.css --watch
```

add the following line to your `index.html` file:

```html
<link rel="stylesheet" href="index.css" />
```

---

## Style Guide for Git Commit Messages :memo:

**How you can add more value to your contribution logs:**
Expand Down
2 changes: 1 addition & 1 deletion anime/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

An Anime Portfolio Template for you!

![Anime - Screenshot](./assets/anime.png "Anime - Screenshot")
![Anime - Screenshot](./img/anime.png "Anime - Screenshot")

## ⚡ Features

Expand Down
Binary file added anime/img/anime.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
// eslint-disable-next-line no-undef
module.exports = {extends: ['@commitlint/config-conventional']}
3 changes: 3 additions & 0 deletions global.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
Loading

0 comments on commit aff0d70

Please sign in to comment.