-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* draft: Added A-Z letters to artists nav bar on hover * refactor: ArtistsLetterNav props * Aligned 'View all artists' and 'Browse by name' lines. Widened letters * feat: Added A-Z letters to mobile * feature: Webpack Chunking * Reduces the number of sub KiB bundles by using V2 application scope as the common denominator. * Restricts bundles to 240 KiB unzipped * Cleans up legacy imports accidentally included by the orders page. * GRO-336: Implement IP address tracking solution in Force (#7582) * Extract local for initial values * Sort formik bag * Extract locals for error messages * Sort things when you can * Simplify terms checkbox * Simplify email checkbox * Collapse sign up options when possible * Split up the terms labels * Grab ip address for sign up lookup * Update tests for sign up form * Added TODO and moved scoped out Sign Up tests that will be covered in Cyprus Integration testing * Added readonly * Updated FormSwitcher jest tests for new SignUpFormQueryRenderer * Update name of sharify helper * Provide fallback for request ip * Mock misbehaving render Co-authored-by: Jon Allured <[email protected]> * feat: Add postie tracking pixel (#7640) * chore(deps): update codecov orb from 1.2.1 to v1.2.2 * chore(deps): update dep typescript from 4.2.4 to v4.3.2 * refactor: Renamed styled component and changed usage of NavLink component to JSX instead of calling like a function * Use partnerArtist artwork connection for loading artist's artworks * Added extra 10px of space above letters section on mobile * Added key prop to NavLink components * Updated tests * chore: adds seo meta tags (#7639) * Revert "chore: adds seo meta tags (#7639)" This reverts commit 6107bdc. * fix: prevent events duplications shows tab (#7647) * Remove an event from upcoming/current events if it displays in the banner; Fix null check errors * Add generated files Co-authored-by: Ivan Badyulya <[email protected]> * fix: SEO meta for Buyer Guarantee (#7648) * chore: adds seo meta tags * fix: trim whitespace from meta description Co-authored-by: nastassia <[email protected]> Co-authored-by: Cameron Rollheiser <[email protected]> Co-authored-by: AL_Sutherland <[email protected]> Co-authored-by: Jon Allured <[email protected]> Co-authored-by: Christopher Pappas <[email protected]> Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: Kirill Zubarau <[email protected]> Co-authored-by: Ashley Jelks <[email protected]> Co-authored-by: Sarah Weir <[email protected]> Co-authored-by: Ivan <[email protected]> Co-authored-by: Ivan Badyulya <[email protected]> Co-authored-by: Joey Aghion <[email protected]>
- Loading branch information
1 parent
c3c95da
commit afca210
Showing
64 changed files
with
2,314 additions
and
1,635 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ version: 2.1 | |
orbs: | ||
artsy-remote-docker: artsy/[email protected] | ||
aws-s3: circleci/[email protected] | ||
codecov: codecov/[email protected].1 | ||
codecov: codecov/[email protected].2 | ||
hokusai: artsy/[email protected] | ||
horizon: artsy/[email protected] | ||
node: artsy/[email protected] | ||
|
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
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
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
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
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
50 changes: 50 additions & 0 deletions
50
src/v2/Apps/BuyerGuarantee/Components/BuyerGuaranteeMeta.tsx
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,50 @@ | ||
import React from "react" | ||
import { Meta, Title, Link } from "react-head" | ||
import { getENV } from "v2/Utils/getENV" | ||
import { cropped } from "v2/Utils/resized" | ||
|
||
export const BuyerGuaranteeMeta: React.FC = () => { | ||
const title = "The Artsy Guarantee - Authenticity and Secure Payment" | ||
const href = `${getENV("APP_URL")}/buyer-guarantee` | ||
const description = | ||
"Artsy is the safest place to buy the art you love. Every purchase made exclusively with Artsy’s secure checkout benefits from our full suite of buyer protections." | ||
const src = cropped("http://files.artsy.net/buyerGuaranteeHeroImage.jpg", { | ||
width: 1600, | ||
height: 800, | ||
}) | ||
|
||
return ( | ||
<> | ||
<Title>{title}</Title> | ||
<Meta property="og:title" content={title} /> | ||
|
||
{description && ( | ||
<> | ||
<Meta name="description" content={description} /> | ||
<Meta property="og:description" content={description} /> | ||
<Meta property="twitter:description" content={description} /> | ||
</> | ||
)} | ||
|
||
{href && ( | ||
<> | ||
<Link rel="canonical" href={href} /> | ||
<Meta property="og:url" content={href} /> | ||
</> | ||
)} | ||
|
||
{src && ( | ||
<> | ||
<Meta property="twitter:card" content="summary_large_image" /> | ||
<Meta property="og:image" content={src} /> | ||
</> | ||
)} | ||
|
||
{!src && <Meta property="twitter:card" content="summary" />} | ||
|
||
<Meta property="twitter:site" content="@artsy" /> | ||
<Meta property="og:type" content="website" /> | ||
<Meta name="robots" content="noindex, nofollow" /> | ||
</> | ||
) | ||
} |
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
Oops, something went wrong.