-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Deepak Rajan
authored and
Deepak Rajan
committed
Nov 20, 2024
1 parent
3b9bb38
commit 9c791d7
Showing
23 changed files
with
7,774 additions
and
408 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
const BuyNow = ({name, link, margin="0px"}) => { | ||
return( | ||
<a href={link}> | ||
<button className='buy-now-button' style={{marginTop: margin}}>{name}</button> | ||
</a> | ||
) | ||
} | ||
|
||
export default BuyNow; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
const PurchaseButton = ({name, link, margin="0px"}) => { | ||
return( | ||
<a href={link}> | ||
<button className='purchase-button' style={{marginTop: margin}}>{name}</button> | ||
</a> | ||
) | ||
} | ||
|
||
export default PurchaseButton; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
const ProductCard = ({title, desc, link, price="$0" , src="/images/yazhi.png"})=>{ | ||
return( | ||
<a href={link}> | ||
<div className="product-card-wrapper"> | ||
<img className="product-card-image" src={src} alt={title}/> | ||
<div className="product-card-title">{title}</div> | ||
<div className="product-card-desc">{desc}</div> | ||
<div className="product-price">{price}</div> | ||
</div> | ||
</a> | ||
) | ||
} | ||
|
||
export default ProductCard; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
title: dGroom Deformer | ||
banner: /images/yazhi.png | ||
description: This dGroom Deformer tool allows you to easily deform grooms with generated or existing guides, making your workflow smoother and more efficient. | ||
--- | ||
|
||
# Additional content can go here | ||
Any markdown content below the frontmatter can be used for longer descriptions, features, etc. |
Oops, something went wrong.