Skip to content
Open
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
25c9a18
remove deprecations + deadcode @ public dir
vlrmprjct Sep 28, 2024
351424e
remove CDN jQuery
vlrmprjct Sep 28, 2024
7d01d7c
remove outdated bootstrap
vlrmprjct Sep 28, 2024
0a8812a
cleanup index entry page
vlrmprjct Sep 28, 2024
747c648
move css to src dir, remove css from public, add CDN css as imports
vlrmprjct Sep 28, 2024
11c3a81
bump react v18.3.1, use npm
vlrmprjct Sep 28, 2024
324d2ed
add tsconfig
vlrmprjct Sep 28, 2024
7141e38
add webpack, add start process, enable typescript
vlrmprjct Sep 28, 2024
1c6b323
rename components extensions to tsx
vlrmprjct Sep 28, 2024
cde8466
add webpack build process
vlrmprjct Sep 28, 2024
e666f1e
move assets to public assets path
vlrmprjct Sep 28, 2024
0e6d5a8
change components assets path
vlrmprjct Sep 28, 2024
8f7a24c
fix favicon
vlrmprjct Sep 28, 2024
e530af9
fix deprecated react.com render() , use createroot()
vlrmprjct Sep 28, 2024
a4999e8
bump fontawesome v6, use react way
vlrmprjct Sep 28, 2024
4c2452d
bump fontawesome v6, revert overeng. react way, use CDN again
vlrmprjct Sep 28, 2024
c01e10f
bump node version
vlrmprjct Sep 29, 2024
1b0d775
bump emailjs version
vlrmprjct Sep 29, 2024
3958354
add .env, prevents exposing emailjs tokens
vlrmprjct Sep 29, 2024
150f6ea
remove obsolete css vendor prefixes
vlrmprjct Sep 29, 2024
2fc0e81
remove pointless responsive css
vlrmprjct Sep 29, 2024
7897b49
change css to nested css selectors
vlrmprjct Sep 29, 2024
4c2e28d
fix broken navbar collapse
vlrmprjct Sep 29, 2024
61b3251
fix public html file
vlrmprjct Oct 1, 2024
db5813b
fix navigaition using bs5.x
vlrmprjct Oct 1, 2024
1444914
fix header, cleanup markup
vlrmprjct Oct 1, 2024
7d3cdbc
fix features,, cleanup markup
vlrmprjct Oct 1, 2024
d5a006a
fix about,, cleanup markup
vlrmprjct Oct 1, 2024
487cfaf
fix services, cleanup markup
vlrmprjct Oct 1, 2024
9ffe953
fix portfolio, cleanup markup
vlrmprjct Oct 1, 2024
aaffbbf
fix team, cleanup markup
vlrmprjct Oct 1, 2024
04b70f1
fix contact, cleanup markup
vlrmprjct Oct 1, 2024
a0bcd73
fix testimonials, cleanup markup
vlrmprjct Oct 1, 2024
54def27
separate footer
vlrmprjct Oct 10, 2024
d2a0a97
fix header, fix classes, use import alias, separate css
vlrmprjct Oct 25, 2024
598d864
remove useless loader @ about
vlrmprjct Oct 25, 2024
3d08453
remove useless loader @ contact, cleanup
vlrmprjct Oct 26, 2024
4987cd6
remove useless loader @ feature
vlrmprjct Oct 26, 2024
4f3d6cb
remove broken link @ footer
vlrmprjct Oct 26, 2024
64a88df
remove useless loader @ gallery
vlrmprjct Oct 26, 2024
bcc8a3c
remove useless loader @ header
vlrmprjct Oct 26, 2024
a188652
remove useless loader @ services
vlrmprjct Oct 26, 2024
dc3e5e1
remove useless loader @ team
vlrmprjct Oct 26, 2024
23c9143
remove useless loader @ testimonials
vlrmprjct Oct 26, 2024
8236bbc
fix header bg position
vlrmprjct Oct 26, 2024
c6b0227
remove useless serviceworker
vlrmprjct Oct 26, 2024
9e78509
remove test related code, there are no test
vlrmprjct Oct 26, 2024
5f3150f
add editorconfig
vlrmprjct Oct 26, 2024
d097fc0
re-format hex colors
vlrmprjct Oct 26, 2024
9fa0837
format app intend
vlrmprjct Oct 26, 2024
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
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
5 changes: 5 additions & 0 deletions .env.development
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
REACT_APP_ENV=development

EMAILJS_SERVICE_ID=YOUR_SERVICE_ID
EMAILJS_TEMPLATE_ID=YOUR_TEMPLATE_ID
EMAILJS_PUBLIC_KEY=YOUR_PUBLIC_KEY
5 changes: 5 additions & 0 deletions .env.production
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
REACT_APP_ENV=production

EMAILJS_SERVICE_ID=YOUR_SERVICE_ID
EMAILJS_TEMPLATE_ID=YOUR_TEMPLATE_ID
EMAILJS_PUBLIC_KEY=YOUR_PUBLIC_KEY
1 change: 0 additions & 1 deletion _config.yml

This file was deleted.

Loading