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

Separate pages and new layout #5

Merged
merged 3 commits into from
Aug 17, 2023
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
8 changes: 4 additions & 4 deletions .postcssrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"plugins": {
"tailwindcss": {}
}
}
"plugins": {
"tailwindcss": {}
}
}
7 changes: 7 additions & 0 deletions .posthtmlrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"plugins": {
"posthtml-include": {
"root": "./src"
}
}
}
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
"HashiCorp.terraform",
"bradlc.vscode-tailwindcss"
]
}
}
58 changes: 58 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
"version": "0.0.1",
"description": "Website for quic.video",
"license": "(MIT OR Apache-2.0)",
"source": "src/index.html",
"source": [
"src/index.html",
"src/explained.html",
"src/publish.html",
"src/watch.html"
],
"scripts": {
"serve": "parcel serve --https --cert cert/localhost.crt --key cert/localhost.key --port 4444 --open",
"build": "parcel build",
Expand Down Expand Up @@ -34,6 +39,7 @@
"eslint-plugin-prettier": "^5.0.0",
"parcel": "^2.9.2",
"postcss": "^8.4.24",
"posthtml-include": "^1.7.4",
"prettier": "^3.0.1",
"prettier-plugin-tailwindcss": "^0.5.2",
"tailwindcss": "^3.3.2",
Expand Down
84 changes: 0 additions & 84 deletions src/app.tsx

This file was deleted.

11 changes: 11 additions & 0 deletions src/common/base.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

a {
@apply text-green-400 hover:cursor-pointer hover:text-green-500;
}

html {
@apply bg-slate-900 text-slate-100;
}
1 change: 1 addition & 0 deletions src/common/github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading