-
Notifications
You must be signed in to change notification settings - Fork 1
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
✨ SSW.Products YakShaver site is born #12
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…omponents - implemented into homepage
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
bradystroud
reviewed
Oct 8, 2024
bradystroud
reviewed
Oct 8, 2024
bradystroud
reviewed
Oct 8, 2024
bradystroud
reviewed
Oct 8, 2024
bradystroud
reviewed
Oct 8, 2024
bradystroud
reviewed
Oct 8, 2024
bradystroud
approved these changes
Oct 8, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved, but a few comments that should be fixed up ASAP
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR addresses the creation of 3 routes on the YakShaver site for SSW.Products. In this PBI we:
🤖🤖🤖🤖
This pull request introduces several new components and updates existing ones to enhance the user interface and functionality. The most important changes include the addition of interactive background effects, new button templates, and a FAQ section. It also includes updates to ESLint configuration and refactoring of page components.
New Components and Templates:
Interactive Background:
InteractiveBackground.tsx
to create an interactive background where bubbles follow the mouse cursor and react to its movement. (components/shared/Background/InteractiveBackground.tsx
)InteractiveBackground.scss
. (components/shared/Background/InteractiveBackground.scss
)Buttons:
ActionsButton
component and template to define and render action buttons with various styles and sizes. (components/shared/Blocks/ActionsButton.tsx
,components/shared/Blocks/ActionsButton.template.tsx
) [1] [2]BookingButton
component and template for a modal booking button. (components/shared/Blocks/BookingButton.tsx
,components/shared/Blocks/BookingButton.template.tsx
) [1] [2]FAQ Section:
FAQ
component and template to display a list of frequently asked questions with expandable answers. (components/shared/Blocks/FAQ.tsx
,components/shared/Blocks/FAQ.template.tsx
) [1] [2]Page Component Refactoring:
FilePage
to use server-side fetching and added new components for better structure. (app/[product]/[filename]/page.tsx
) (app/[product]/[filename]/page.tsxL1-R48)ProductPage
to include the newInteractiveBackground
andFooterServer
components. (app/[product]/page.tsx
) (app/[product]/page.tsxL1-R5, app/[product]/page.tsxL13-R25)Configuration Updates:
@typescript-eslint/no-explicit-any
rule in the.eslintrc.json
file. (.eslintrc.json
)