Skip to content

Commit

Permalink
Initial dev work (#1)
Browse files Browse the repository at this point in the history
* Initial dev work

* Add icons

* Add more

* Fix

* Set up pages

* Fix

* Added some initial copy

* Added Lior pic

* Update Lior title

* Fixed images

* Swapped contact section and contact copy

* Swap footer

* Add scripts

* Add services page

* Update deploy script

* Added copy

* Refactor

* Refactor

* Fix path

* Fix paths

* Fix remaining scripts

* Update README

* Refactoring

* Exclude files

* Auto restart

* Fix

* Style fixes

* Fix style order

* Add GA

* Cleanup

* Update testimonial

* Added copy and calendly

* Add calendly to contact page

* Sticky navbar

* Fix contact form

* Added additional copy

* Remove contact from menu

* Fixed footer

* Updated Lior pic

* Revised social icons on the home page

* Make logo transparent

* Transparent footer logo

Co-authored-by: Ryan Gor <[email protected]>
  • Loading branch information
eberkund and RyanGor authored Jan 7, 2023
1 parent 1ccc5de commit 7a8c9a8
Show file tree
Hide file tree
Showing 526 changed files with 3,761 additions and 105 deletions.
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ end_of_line = crlf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = true

[*.json]
indent_size = 2
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
node_modules
.DS_Store
public
static/*.css
static/*.js
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"tabWidth": 2,
"useTabs": false
}
10 changes: 10 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"search.exclude": {
"static/*.js": true,
"static/*.css": true,
},
"files.exclude": {
"node_modules": true,
"public": true
}
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ brew install node zola
# Install Bootstrap
npm install

# Start
zola serve
# Start and watch for changes
npm run watch
```
34 changes: 18 additions & 16 deletions config.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
# The URL the site will be built for
base_url = "https://example.com"

# Whether to automatically compile all Sass files in the sass directory
compile_sass = true

# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true

[markdown]
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = false

[extra]
# Put all your custom variables here
# The URL the site will be built for
base_url = "/"

# Whether to automatically compile all Sass files in the sass directory
compile_sass = true

# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true

title = "LCAT"
description = "An accounting firm"

[markdown]
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = false

[extra]
3 changes: 3 additions & 0 deletions content/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
template: pages/home.html
---
4 changes: 4 additions & 0 deletions content/contact/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
template: pages/contact.html
---

3 changes: 3 additions & 0 deletions content/services/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
template: pages/services.html
---
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build]
publish = "public"
command = "zola build"
command = "npm run build"

[build.environment]
ZOLA_VERSION = "0.16.1"
Loading

0 comments on commit 7a8c9a8

Please sign in to comment.