Skip to content

Commit

Permalink
feat: new comparison pages
Browse files Browse the repository at this point in the history
  • Loading branch information
gregberge committed Aug 25, 2024
1 parent 58d4df2 commit 393b5bd
Show file tree
Hide file tree
Showing 23 changed files with 524 additions and 391 deletions.
3 changes: 3 additions & 0 deletions app/compare/applitools/applitools-emblem.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
70 changes: 61 additions & 9 deletions app/compare/applitools/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,31 +11,83 @@ import {
TableSection,
TrySection,
} from "../common";
import applitoolsDark from "./applitools-dark.svg";
import applitools from "./applitools.svg";
import { ComparisonTable, Features } from "../comparison-table";
import applitoolsEmblem from "./applitools-emblem.svg";
import applitoolsLogoDark from "./applitools-logo-dark.svg";
import applitoolsLogo from "./applitools-logo.svg";
import { FAQ } from "./faq";
import { ComparisonTable } from "./table";

export const metadata: Metadata = getMetadata({
absoluteTitle: "Argos, the alternative to Applitools",
description:
"Explore a detailed comparison of Argos and Applitools, focusing on features, performance, and ease of use in visual testing.",
"Learn how Argos compares to Applitools and why Argos is the best alternative for visual testing.",
pathname: "/compare/applitools",
});

const features: Features = {
pricing: {
argos: "Not public",
competitor: "$30/mo",
},
playwrightDebugging: {
argos: "✔️",
competitor: "❌",
},
playwrightTestRetries: {
argos: "✔️",
competitor: "❌",
},
githubSso: {
argos: "✔️",
competitor: "❌",
},
openSource: {
argos: "✔️",
competitor: "❌",
},
beautifulAndIntuitiveUi: {
argos: "✔️",
competitor: "❌",
},
bestScreenshotQuality: {
argos: "✔️",
competitor: "❌",
},
githubActionsPartialReRuns: {
argos: "✔️",
competitor: "❌",
},
githubLight: {
argos: "✔️",
competitor: "❌",
},
monitoringMode: {
argos: "✔️",
competitor: "✔️",
},
sensitivityThresholdPerScreenshot: {
argos: "✔️",
competitor: "❌",
},
};

export default function Page() {
return (
<>
<HeroSection
title="Applitools vs Argos"
description="Applitools and Argos are two leading visual testing tools. This guide will help you understand their key features, pricing, and unique strengths, making it easier for you to choose the right tool for your needs."
logoSrc={applitools}
logoSrcDark={applitoolsDark}
logoAlt="Applitools"
description="Learn how Argos compares to Applitools and why Argos is the best alternative for visual testing."
emblemSrc={applitoolsEmblem}
emblemAlt="Applitools"
/>

<TableSection>
<ComparisonTable />
<ComparisonTable
logoSrc={applitoolsLogo}
logoSrcDark={applitoolsLogoDark}
title="Applitools"
features={features}
/>
</TableSection>

<PricingSection title="Argos Pricing">
Expand Down
110 changes: 0 additions & 110 deletions app/compare/applitools/table.tsx

This file was deleted.

1 change: 0 additions & 1 deletion app/compare/chromatic/chromatic-dark.svg

This file was deleted.

10 changes: 10 additions & 0 deletions app/compare/chromatic/chromatic-emblem.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 393b5bd

Please sign in to comment.