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

Hardly finished project... #33

Open
wants to merge 34 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
a3000ea
init
dannebrob Apr 4, 2023
86668f4
init
dannebrob Apr 6, 2023
c3fab7c
import of logos and start of header
dannebrob Apr 6, 2023
be93a3e
added content to nav
dannebrob Apr 6, 2023
2d8ef36
re-name css to global
dannebrob Apr 6, 2023
eacee7f
added some styles
dannebrob Apr 6, 2023
e5a02f6
remove of div
dannebrob Apr 6, 2023
c3fb72a
small fix
dannebrob Apr 6, 2023
f9c5c7c
header
dannebrob Apr 6, 2023
ba05507
update style of header component
dannebrob Apr 7, 2023
991c7df
benefits
dannebrob Apr 7, 2023
98caa6b
styling of benefits
dannebrob Apr 7, 2023
8df4239
added button in Benefit components
dannebrob Apr 7, 2023
dd80803
workout structure
dannebrob Apr 7, 2023
559c166
small fix of benefits
dannebrob Apr 7, 2023
dbe8bee
Application component structure
dannebrob Apr 7, 2023
6ffe147
npm install React Hook Form
dannebrob Apr 7, 2023
3d6913f
start of working form
dannebrob Apr 7, 2023
2a8470e
save
dannebrob Apr 7, 2023
d9a3da6
structure of Signup form
dannebrob Apr 9, 2023
996aa27
sticky nav structure
dannebrob Apr 9, 2023
cd3ae9f
Top navigation and Sticky nav on smaller devices
dannebrob Apr 9, 2023
60c0d4f
benefits styling mobile
dannebrob Apr 9, 2023
6ea76a4
workout component structure and css mobile
dannebrob Apr 9, 2023
eb4e46f
small css fix
dannebrob Apr 9, 2023
de1a5d5
save
dannebrob Apr 9, 2023
0421b7d
removed some bugs
dannebrob Apr 9, 2023
fb4510b
start of signup form
dannebrob Apr 9, 2023
6176bbe
added icon on form validation
dannebrob Apr 14, 2023
9ab9f1f
hover effect on buttons
dannebrob Apr 14, 2023
e35b487
small fixes to deploy
dannebrob Apr 25, 2023
37411ed
deploy fix
dannebrob Apr 25, 2023
049ecc2
styling mobile
dannebrob May 7, 2023
4bc007e
update browserslist-db@latest
dannebrob May 7, 2023
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
15 changes: 5 additions & 10 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
"extends": [
"airbnb"
],
"extends": ["airbnb"],
"globals": {
"document": true,
"window": true,
Expand All @@ -22,17 +20,17 @@
"modules": true
}
},
"plugins": [
"react-hooks"
],
"plugins": ["react-hooks"],
"rules": {
"linebreak-style": ["off", "unix"],
"react/function-component-definition": [
2,
{
"namedComponents": "arrow-function",
"unnamedComponents": "arrow-function"
}
],

"arrow-body-style": "off",
"class-methods-use-this": "off",
"brace-style": [
Expand All @@ -42,10 +40,7 @@
"allowSingleLine": true
}
],
"comma-dangle": [
"error",
"never"
],
"comma-dangle": ["error", "never"],
"consistent-return": "off",
"curly": "error",
"eol-last": "off",
Expand Down
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"githubPullRequests.ignoredPullRequestBranches": ["master"]
}
6 changes: 6 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# This file tells netlify where the code for this project is and
# how it should build the JavaScript assets to deploy from.
[build]
base = "/"
publish = "build/"
command = "npm run build"
Loading