Skip to content
Open
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
5aafdda
chore: Install node.js (20) and npm
bagirovoleg Sep 29, 2025
204f741
style: Add CSS reset, basic grid variables, and fonts
bagirovoleg Sep 29, 2025
65d0943
feat: Implement working version of header
bagirovoleg Sep 29, 2025
3b7f5a8
feat: Implement working version of header
bagirovoleg Sep 29, 2025
5857ee5
style: Add responsive styles for header
bagirovoleg Sep 30, 2025
b72f8a3
feat: Implement working version of benefits section (MAIN)
bagirovoleg Sep 30, 2025
88a951c
style: Add responsive styles fot benefits section (MAIN)
bagirovoleg Sep 30, 2025
4a0fe91
style: Add responsive styles for drop menu in header
bagirovoleg Oct 1, 2025
ed59ace
feat: Add dropdown menu in header and tab functionality for benefits …
bagirovoleg Oct 1, 2025
5451fbc
feat: Add animations to clickable elements
bagirovoleg Oct 1, 2025
f1fb37b
style: Add cursor pointer to animations mixin and remove from other e…
bagirovoleg Oct 1, 2025
7d9b2ae
style: Add responsive styles for drop meetluna section in main
bagirovoleg Oct 1, 2025
1927869
feat: Implement working version of future section in main
bagirovoleg Oct 1, 2025
559a9b2
feat: Implement working version of future section in main
bagirovoleg Oct 2, 2025
5bb0ca7
feat: Implement working version 41025.0956 of future/luna section in …
bagirovoleg Oct 4, 2025
e8b78ca
style: Add responsive styles fot luna/future section (MAIN)
bagirovoleg Oct 5, 2025
9bcff50
style: Add responsive styles for future/luna section (MAIN)
bagirovoleg Oct 6, 2025
54e815e
style: Add responsive styles for reviews section (MAIN)
bagirovoleg Oct 6, 2025
07492bc
feat: Implement working version 61025.1631 of fratures section in main
bagirovoleg Oct 6, 2025
6be6658
style: Add responsive styles for features section (MAIN)
bagirovoleg Oct 7, 2025
58d87aa
feat: Implement working version 71025:1437 of contacts section in main
bagirovoleg Oct 7, 2025
e20e1bd
style: Add responsive styles for contacts section (MAIN)
bagirovoleg Oct 8, 2025
28f97e0
style: Add responsive styles for footer
bagirovoleg Oct 9, 2025
8ee5c26
feat: Update styles according to Figma design and add link hover anim…
bagirovoleg Oct 9, 2025
b5d01fa
chore: Minor fixes and adjustments
bagirovoleg Oct 13, 2025
a2f3dfb
chore: Minor fixes and adjustments
bagirovoleg Oct 14, 2025
f7ea6a6
style: Update HTML to comply with linter rule "attr-new-line": 2
bagirovoleg Oct 14, 2025
c795d6f
chore: Some fix
bagirovoleg Oct 14, 2025
17d0733
feat: Add meetluna section
bagirovoleg Oct 14, 2025
ba7a8d6
feat: Add meetluna section
bagirovoleg Oct 14, 2025
a261d87
feat: Add JavaScript functionality
bagirovoleg Oct 14, 2025
efdf45a
fix: Apply mentor feedback and implement suggested corrections
bagirovoleg Oct 27, 2025
51a19b6
fix: Adjust styles for close-menu button in dropdown menu
bagirovoleg Oct 27, 2025
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
29 changes: 29 additions & 0 deletions .github/workflows/test.yml-template
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test

on:
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
- name: Upload HTML report(backstop data)
if: ${{ always() }}
uses: actions/upload-artifact@v2
with:
name: report
path: backstop_data
13 changes: 2 additions & 11 deletions .linthtmlrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,24 +26,15 @@
"indent-width-cont": true,
"input-radio-req-name": true,
"spec-char-escape": true,
"tag-bans": [
"b",
"i",
"u",
"center",
"style",
"marquee",
"font",
"s"
],
"tag-bans": ["b", "i", "u", "center", "style", "marquee", "font", "s"],
"tag-name-lowercase": true,
"tag-name-match": true,
"tag-self-close": false,
"tag-close": true,
"text-ignore-regex": "&",
"title-no-dup": true,
"line-end-style": "lf",
"attr-new-line": 2,
"attr-new-line": 4,
"attr-name-style": "dash",
"attr-no-unsafe-char": true
}
36 changes: 18 additions & 18 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"printWidth": 80,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "html",
"insertPragma": false,
"endOfLine": "auto",
"singleAttributePerLine": true,
"htmlWhitespaceSensitivity": "ignore"
}
}
]
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"printWidth": 80,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "html",
"insertPragma": false,
"endOfLine": "auto",
"singleAttributePerLine": false,
"htmlWhitespaceSensitivity": "ignore"
}
}
]
}
Loading
Loading