Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions .linthtmlignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
src/components/**/*.html
src/dist/**/*.html
dist/**/*.html
1 change: 1 addition & 0 deletions .stylelintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/backstop_data/
/dist
/src/dist
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# KateVR landing page (HARD)

**⚠️ Attention: this is a hard landing page for development. We highly recommend choosing this landing page only if you didn't have a lot of troubles with previous homework tasks and if you sent all homework in time (didn't miss deadlines).**
**⚠️ Attention: this is a hard landing page for development. We highly recommend choosing this landing page only if you didn't have a lot of troubles with previous homework tasks and if you sent all homework in time (didn't miss deadlines).**

Implement landing page according to [Figma design](https://www.figma.com/file/Blpg4iapsI7fRqJeSp6DvK/KatVR?node-id=1%3A370) - Use BEM and SCSS

Expand All @@ -25,7 +25,7 @@ Implement landing page according to [Figma design](https://www.figma.com/file/Bl
11. `git push origin develop` - to send you code for PR.
12. Create a Pull Request (PR) from your branch `develop` to branch `master` of original repo.
13. Replace `<your_account>` with your Github username in the
[DEMO LINK](https://<your_account>.github.io/layout_KateVR/).
[DEMO LINK](https://Olena7202.github.io/layout_KateVR/).
14. Copy `DEMO LINK` to the PR description.

> To update you PR repeat steps 7-11.
19 changes: 0 additions & 19 deletions index.html

This file was deleted.

23 changes: 5 additions & 18 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@linthtml/linthtml": "^0.9.6",
"@mate-academy/bemlint": "latest",
"@mate-academy/linthtml-config": "latest",
"@mate-academy/scripts": "^2.1.2",
"@mate-academy/scripts": "^2.1.3",
"@mate-academy/stylelint-config": "latest",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
Expand Down
76 changes: 76 additions & 0 deletions src/components/AboutProduct/about-product.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
<!doctype html>
<section
class="about"
id="about"
>
<div class="container">
<div class="about__top">
<div class="about__count">1/5</div>
<h2 class="about__title">
ABOUT
<div class="about__title-blue">PRODUCT</div>
</h2>
<div class="about__image"></div>
<div class="about__swipes">
<div class="about__swipe about__swipe--active"></div>
<div class="about__swipe"></div>
<div class="about__swipe"></div>
<div class="about__swipe"></div>
<div class="about__swipe"></div>
</div>
<div class="about__info-product">
<h2 class="about__title--tablet">
ABOUT
<div class="about__title--tablet-blue">PRODUCT</div>
</h2>
<p class="about__paragraph">
KAT loco is a foot-based VR locomotion system that gives complete
physical control over lower-body actions, allowing you to freely walk,
run, and carry out just any other movement in virtual reality.
</p>
<a
href="#"
class="video__link"
id="video-link-2"
></a>
</div>

<div class="about__links">
<a
href="#"
class="page__link header__link"
>
Previous
</a>
<a
href="#"
class="page__link header__link"
>
Next
</a>
</div>
</div>
<div class="about__bottom">
<div class="about__meet">
<div class="about__undertitle">Hello,</div>
<h2 class="about__title about__title--bottom">
NICE TO MEET
<div class="about__title-blue">YOU!</div>
</h2>
<p class="about__paragraph">
KAT VR is an independent company dedicated to the research,
development, and sales of VR Locomotion products and solutions.
Founded in 2013, we have quickly grown to become one of the world’s
leading professional suppliers of VR games’ & simulations’ equipment
</p>
</div>
<div class="about__container-image">
<img
class="about__image-bottom"
src="images/about-us.svg"
alt="about us"
/>
</div>
</div>
</div>
</section>
Loading
Loading