Skip to content

Commit

Permalink
add new pages
Browse files Browse the repository at this point in the history
  • Loading branch information
konstantin.batakov committed Feb 14, 2024
1 parent 739dc24 commit 9b4f55e
Show file tree
Hide file tree
Showing 12 changed files with 153 additions and 232 deletions.
9 changes: 9 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
<link rel="stylesheet" href="./normalize.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap" rel="stylesheet">
</head>
<body>
<nav>
Expand All @@ -21,6 +24,12 @@
<li>
<a href="src/pages/profile/profile.html">Профиль</a>
</li>
<li>
<a href="src/pages/edit-profile/edit-profile.html">Редактировать профиль</a>
</li>
<li>
<a href="src/pages/edit-profile/edit-password.html">Редактировать пароль</a>
</li>
<li>
<a href="src/pages/errors/404.html">404</a>
</li>
Expand Down
5 changes: 5 additions & 0 deletions normalize.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ html {

body {
margin: 0;
font-family: Inter;
}

/**
Expand Down Expand Up @@ -353,3 +354,7 @@ template {
* {
box-sizing: border-box;
}

button {
cursor: pointer;
}
206 changes: 3 additions & 203 deletions package-lock.json

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

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,14 @@
"start": "npm run build && node server.js"
},
"devDependencies": {
"nodemon": "^3.0.3",
"sass": "^1.70.0",
"vite": "^5.0.8"
},
"dependencies": {
"express": "^4.18.2",
"vite-plugin-handlebars": "^2.0.0"
},
"engines": {
"engines": {
"node": "16.20.2"
}
}
}
Loading

0 comments on commit 9b4f55e

Please sign in to comment.