Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #2675

Open
wants to merge 46 commits into
base: master
Choose a base branch
from
Open

Develop #2675

Show file tree
Hide file tree
Changes from 34 commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
afcbaf6
Finished header
Farrelzum Dec 11, 2024
83415a0
Done skeleton of product card in HTML
Farrelzum Dec 11, 2024
25f52ee
Content added to paragraphs in product-card
Farrelzum Dec 11, 2024
f8fb86f
Recommended section done
Farrelzum Dec 11, 2024
bc4c810
Category framework
Farrelzum Dec 12, 2024
b735b88
Finished category section and button
Farrelzum Dec 12, 2024
c93bc3b
Added benefit section
Farrelzum Dec 13, 2024
b8d05f6
Created form framework
Farrelzum Dec 15, 2024
e90dca8
Form styling
Farrelzum Dec 16, 2024
604bdd6
Hover and active state on button
Farrelzum Dec 17, 2024
aef9fe4
Added address section with functionality
Farrelzum Dec 17, 2024
40afc36
Added footer
Farrelzum Dec 21, 2024
99fa51f
Skeleton of menu with functional navigation
Farrelzum Dec 21, 2024
85cd17e
Finished mobile version
Farrelzum Dec 22, 2024
b439ccf
Header version for tablets
Farrelzum Dec 25, 2024
b19bd11
Before changing an image
Farrelzum Dec 26, 2024
649f900
Category section for tablets
Farrelzum Dec 26, 2024
e263b55
Ad for tablets
Farrelzum Dec 26, 2024
1e788c6
Finished version for tablets
Farrelzum Dec 26, 2024
77e662e
Desktop version of header with navigation
Farrelzum Dec 27, 2024
f43a2a8
Menu fo desktop
Farrelzum Dec 27, 2024
a361a7c
Recommended section for desktop
Farrelzum Dec 28, 2024
9489409
Category version for desktop
Farrelzum Dec 29, 2024
61f8ff6
Ad version for desktop
Farrelzum Dec 29, 2024
ac64ffa
Contact us section for dekstop
Farrelzum Dec 29, 2024
62161dc
Footer version for dekstop
Farrelzum Dec 29, 2024
905051d
Hover effect for gallery
Farrelzum Dec 29, 2024
56706df
Added some fixes
Farrelzum Dec 29, 2024
50b757f
Cleaning the code
Farrelzum Dec 29, 2024
1688a13
Cleaning the code v.2
Farrelzum Dec 29, 2024
0afbfa2
Fixing grid for categories
Farrelzum Jan 2, 2025
7b94438
Working on tel hover
Farrelzum Jan 2, 2025
898b07c
Add favicon
Farrelzum Jan 4, 2025
b08e82a
Fix hover for dekstop phone
Farrelzum Jan 4, 2025
ff73bfd
Added required attribute to form
Farrelzum Jan 21, 2025
1baf017
Submit button working correctly
Farrelzum Jan 23, 2025
89afad6
Hover and focus color on black. Added prevenDefault() to submit butto…
Farrelzum Jan 27, 2025
038970c
Responsive header
Farrelzum Feb 4, 2025
2ed256b
Responsive menu
Farrelzum Feb 4, 2025
1da5de8
Responsive browse-by and recommend
Farrelzum Feb 4, 2025
1d1f520
Better quality footer, hover on adress content
Farrelzum Feb 4, 2025
56ac674
product-card--margin between paragraphs
Farrelzum Feb 4, 2025
8772231
Prettier button on mobiles
Farrelzum Feb 4, 2025
f4d38c6
Bigger mobile button
Farrelzum Feb 4, 2025
0aefca0
Button fixed
Farrelzum Feb 5, 2025
bd72389
Font-size and gaps in category images repaired
Farrelzum Feb 5, 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
Loading
Loading