Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
16b40bc
Visual menu ready
Patryk91sz Feb 9, 2026
43bbd81
Hero section for mobile ready
Patryk91sz Feb 11, 2026
553e3d1
Html for main ready
Patryk91sz Feb 11, 2026
a9c8126
Styles for main in 320 ready
Patryk91sz Feb 11, 2026
57dec52
About-mobile ready
Patryk91sz Feb 12, 2026
778b0aa
Merge branch 'develop' of https://github.com/Patryk91sz/layout_creati…
Patryk91sz Feb 12, 2026
70b6ea0
Repairing clear html
Patryk91sz Feb 12, 2026
3a5a5a1
Merge branch 'develop' of https://github.com/Patryk91sz/layout_creati…
Patryk91sz Feb 12, 2026
78cc12a
Stats mobile ready
Patryk91sz Feb 12, 2026
aaaf47b
html for menu ready
Patryk91sz Feb 12, 2026
99ebb7d
Sync
Patryk91sz Feb 13, 2026
3daebe5
Merge branch 'develop' of https://github.com/Patryk91sz/layout_creati…
Patryk91sz Feb 13, 2026
8172f6c
Footer menu for mobile visual ready
Patryk91sz Feb 13, 2026
a0ee44f
Favicon added
Patryk91sz Feb 14, 2026
01e9548
Contact us complete
Patryk91sz Feb 14, 2026
39aa90a
Footer for mobile complete
Patryk91sz Feb 14, 2026
bf4c630
Menu and logo links works
Patryk91sz Feb 14, 2026
25e34ba
Header and hero for tablet ready
Patryk91sz Feb 14, 2026
38ef350
Main for tablet ready
Patryk91sz Feb 16, 2026
5908a89
Main for tablet ready
Patryk91sz Feb 16, 2026
dd8ee14
Footer for tablet ready
Patryk91sz Feb 16, 2026
102c6ba
Fixes for tablet
Patryk91sz Feb 17, 2026
b8be2ae
Header for 1200 ready
Patryk91sz Feb 19, 2026
cf1d803
1200 hero ready
Patryk91sz Feb 23, 2026
d2d1306
Responsive 768-1024px fight
Patryk91sz Feb 23, 2026
84486f0
Hero for 1024 ready
Patryk91sz Feb 24, 2026
3a080c4
Main for 1024 ready
Patryk91sz Feb 24, 2026
ad7e093
About for 1024 ready
Patryk91sz Feb 24, 2026
e232d04
Footer for 1024 ready
Patryk91sz Mar 1, 2026
ff6140a
header and main 1200 ready
Patryk91sz Mar 4, 2026
c5d5de8
1200 ready
Patryk91sz Mar 4, 2026
8467992
Hover for hero button works
Patryk91sz Mar 5, 2026
d7c003e
Ready?
Patryk91sz Mar 6, 2026
1ae5a38
Menu for mobile repaired
Patryk91sz Mar 10, 2026
44a696f
Max-width added for main and about
Patryk91sz Mar 10, 2026
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
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/backstop_data
/dist
/src/styles/main.css
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@ backstop_data
dist
.cache
.parcel-cache
src/styles/main.css
src/styles/main.css.map
9 changes: 4 additions & 5 deletions .stylelintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
module.exports = {
extends: "@mate-academy/stylelint-config",
plugins: [
"stylelint-scss"
],
rules: {}
extends: '@mate-academy/stylelint-config',
plugins: ['stylelint-scss'],
rules: {},
ignoreFiles: ['src/styles/main.css'],
};
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ Implement landing page according to [Figma design](https://www.figma.com/file/dY
- Tablet 640px
- Mobile (> 320px)


## Github flow

1. **Fork** the repo.
2. **Clone** the forked one. (The project link should have your name but not `mate-academy`)
3. Run `npm install` (or just `npm i`).
Expand All @@ -22,7 +22,7 @@ Implement landing page according to [Figma design](https://www.figma.com/file/dY
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_creativeBakery/).
[DEMO LINK](https://Patryk91sz.github.io/layout_creativeBakery/).
14. Copy `DEMO LINK` to the PR description.

> To update you PR repeat steps 7-11.
Expand Down
Loading
Loading