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

React version #2

Merged
merged 50 commits into from
Jan 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
a5c0446
Add minified css to index.html
itbruno Aug 26, 2020
bf40cd5
Add Google Analytics code
itbruno Aug 26, 2020
37c1683
Add GTM to preconnect tag
itbruno Aug 26, 2020
b014076
update header link
itbruno Aug 26, 2020
bb20549
Add min-with to newsletter input
itbruno Aug 27, 2020
70fb7de
Update index.html
itbruno Aug 27, 2020
d54ab94
fix some links
itbruno Aug 28, 2020
8c61cdf
update link colors
itbruno Aug 30, 2020
e4dbb22
add css performance link
itbruno Aug 31, 2020
9f5f480
Update links.js
itbruno Aug 31, 2020
966f8b4
add visibility to avoid links keep visible
itbruno Sep 1, 2020
e4b47e4
update link title for notion performance
itbruno Sep 12, 2020
5ce5a9a
Update colors
Oct 18, 2020
b03376f
Update links.js
itbruno Oct 23, 2020
8840f53
Add base structure for React based project
itbruno Oct 26, 2020
e451631
Create base theme structure and header component
itbruno Nov 13, 2020
793aa06
Remove unused methods for a while
itbruno Nov 13, 2020
9918e43
Update header styles
itbruno Nov 17, 2020
157baa0
Create category buttons and add hard-coded sample
itbruno Nov 17, 2020
7d130c0
asda
itbruno Nov 29, 2020
99d6023
Create Icon and Link components with hardcoded content
itbruno Dec 8, 2020
9071da0
Update icon base color for link-items
itbruno Dec 8, 2020
b7938f9
Create component for listingItems and switch all logic/events to this…
itbruno Dec 13, 2020
d899a44
Add event to toggle links by category
itbruno Dec 13, 2020
d655e05
Update comparision expression
itbruno Dec 13, 2020
ff34d90
Add dynamic data from api mock
itbruno Dec 13, 2020
9b835e5
Add mock api response to services
itbruno Dec 20, 2020
2431dd7
[temp] Remove all unused dynamic logic.
itbruno Dec 20, 2020
db4dd20
[temp] Remove dynamic param from route
itbruno Dec 20, 2020
cbdd526
Add mock data to Header
itbruno Dec 20, 2020
1e0369f
Add contactForm component
itbruno Dec 20, 2020
2edda3a
remove contactForm component import from root file
itbruno Dec 20, 2020
66de385
Add social links on footer
itbruno Dec 24, 2020
ee91260
Update icon component
itbruno Dec 27, 2020
f038f62
Fix list markup
itbruno Dec 27, 2020
9b7e299
Add react-helmet to create custom SEO info
itbruno Dec 27, 2020
c162ee1
Add hide animation for disabled links
itbruno Dec 27, 2020
5b97e62
Update mock
itbruno Dec 27, 2020
8d14bca
Update Helmet library to use new async helmet
itbruno Dec 27, 2020
2849260
remove package-lock.json
itbruno Dec 27, 2020
694d1f2
Comment in services/api to add api when is already
itbruno Dec 27, 2020
4cb6a77
Update readme
itbruno Dec 27, 2020
7a0b565
Update services location to keep outside themes folder
itbruno Dec 27, 2020
1eb3d92
Update footer markup and add spacing for bottom
itbruno Dec 27, 2020
ee16f31
Update mock path for listing items
itbruno Jan 1, 2021
11dffc7
Add open-graph meta tags
itbruno Jan 1, 2021
71d5fa7
Update styles to keep easy change theme-color
itbruno Jan 1, 2021
9b2d56c
update mock link
itbruno Jan 1, 2021
85c6023
remove styles.css
itbruno Jan 1, 2021
79f0a2a
Update readme
itbruno Jan 1, 2021
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: 8 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
root = true

[*]
indent_style = space
indent_size = 4
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = true
23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
Loading