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

Sprint 1 #47

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Drafts of authorization forms and chat item.
  • Loading branch information
zhel1 committed Dec 19, 2023
commit 62e5ee68a58f1150517c09aea51fab2e9b6ed89d
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
TODO

### Ветка, в которой делаете задания спринта, должна называться sprint_i, где i - номер спринта. Не переименовывайте её.

### Откройте pull request в ветку main из ветки, где вы разрабатывали проект, и добавьте ссылку на этот pr в README.md в ветке main.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="src/style.scss">
<title>Vite + TS</title>
</head>
<body>
283 changes: 283 additions & 0 deletions package-lock.json

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

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -9,6 +9,9 @@
"preview": "vite preview"
},
"devDependencies": {
"handlebars": "4.7.8",
"sass": "^1.69.5",
"scss": "^0.2.4",
"typescript": "^5.2.2",
"vite": "^5.0.8"
}
Binary file added public/assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
3 changes: 3 additions & 0 deletions src/components/button/button.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<button class="button button__{{type}}" page="{{page}}">
{{label}}
</button>
Loading