Skip to content

Commit

Permalink
dGroom deformer studio version details
Browse files Browse the repository at this point in the history
  • Loading branch information
Deepak Rajan authored and Deepak Rajan committed Nov 26, 2024
1 parent 3fe9393 commit d6bdcb6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/elements/Store/ProductCard.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const ProductCard = ({title, desc, link, price="$0" , src="/images/yazhi.png"})=>{
const ProductCard = ({title, desc, link, price="$0" , src="/images/yazhi.png", openInNewTab=false})=>{
return(
<a href={link}>
<a href={link} target={openInNewTab ? "_blank" : "_self"} rel={openInNewTab ? "noopener noreferrer" : undefined}>
<div className="product-card-wrapper">
<img className="product-card-image" src={src} alt={title}/>
<div className="product-card-title">{title}</div>
Expand Down
2 changes: 2 additions & 0 deletions pages/store/dgroom-deformer.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ const StoreDgroomDeformer = ()=>{

<div className="product-purchase-description">
Contains 16 HDA, with Furry and Example File. Along with deformer source code
<br/><br/><i>Small Studio is intended for CFX teams with fewer than 15 members.</i>
</div>
<PurchaseButton name=" $1000 - dGroom Deformer - Small Studio"
link="https://buy.stripe.com/cN2eWAb8Q0cjeVq8ww"
Expand All @@ -126,6 +127,7 @@ const StoreDgroomDeformer = ()=>{

<div className="product-purchase-description">
Contains 16 HDA, with Furry and Example File. Along with deformer source code
<br/><br/><i>Large Studio is intended for CFX teams with more than 15 members.</i>
</div>
<PurchaseButton name=" $1300 - dGroom Deformer - Large Studio"
link="https://buy.stripe.com/00g15KccU2kr7sY149"
Expand Down
1 change: 1 addition & 0 deletions pages/store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ const StoreIndex = ()=> {
price="$0"
link="https://www.dropbox.com/scl/fo/hnewr2p9ppg3fz1663920/ALmhR7BkOqBGsK4n0-VPo-A?rlkey=qpfgmpk55dobhzw8ch3wfqqqh&st=g7xb54ef&dl=0"
src="/images/copernicus_thumb.webp"
openInNewTab={true}
/>
</div>
</div>
Expand Down

0 comments on commit d6bdcb6

Please sign in to comment.