feat(web): add Product Detail Page + authenticity verification#14
Merged
oreoluwa648 merged 1 commit intoApr 12, 2026
Conversation
Add PDP at app/(shop)/products/[slug]/page.tsx (gallery, variants, quantity, add-to-cart). Add client components: AuthenticityVerifier, VariantSelector, QuantityPicker, AddToCartButton. Extend data/mock-products.ts with variants, images and stock. Add mocked verification API at app/api/products/[id]/verify/route.ts. Move PDP into (shop) route and remove duplicate top-level page. Respect client/server boundaries and SSG via generateStaticParams. Closes oreoluwa648#7
This file contains hidden or 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
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.
Pull Request: Product Detail Page + Authenticity UI
Branch:
feature/Product-Detail-Page-and-Authenticity-UIRelated Issue: #7
Description
Implements the product detail page (PDP) for
oreel-webwith image gallery, variant selector, quantity picker, stock status, and add-to-cart functionality. Adds blockchain-based authenticity verification UI that calls a backend Stellar service endpoint (mocked for MVP) and displays verification status.Changes Made
app/(shop)/products/[slug]/page.tsxwith dynamic route,generateStaticParamsfor SSG, image gallery, product info, description.AuthenticityVerifier,VariantSelector,QuantityPicker,AddToCartButtonfor modular PDP interactions.app/api/products/[id]/verify/route.tsreturns{ verified, message, txHash }with simulated delay and product‑based mock logic.mock-products.tsnow includes variants, images, stock, and authenticity metadata.Verification
Closes #7