Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/pages/book-demo/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from "react";
import { Helmet } from "react-helmet";
import Head from "@docusaurus/Head";

import Layout from "@theme/Layout";
import GoBack from "@site/src/components/demo/GoBack";
Expand All @@ -11,6 +12,9 @@ export default function Home(): JSX.Element {
title="Book a Demo | Wopee.io"
description="Book a live demo of Wopee.io AI testing agents. See how autonomous test generation and self-healing tests can cut your QA effort by 70%."
>
<Head>
<meta name="robots" content="noindex, nofollow" />
</Head>
<Helmet>
<script
type="text/javascript"
Expand Down
4 changes: 4 additions & 0 deletions src/pages/jan-beranek/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from "react";
import Layout from "@theme/Layout";
import Head from "@docusaurus/Head";
import { Helmet } from "react-helmet";

export default function Home(): JSX.Element {
Expand All @@ -8,6 +9,9 @@ export default function Home(): JSX.Element {
title="Book a Meeting with Jan | Wopee.io"
description="Schedule a meeting with Jan Beránek from Wopee.io. Discuss AI test automation, onboarding, or product questions."
>
<Head>
<meta name="robots" content="noindex, nofollow" />
</Head>
<Helmet>
<script
type="text/javascript"
Expand Down
4 changes: 4 additions & 0 deletions src/pages/marcel/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from "react";
import { Helmet } from "react-helmet";
import Head from "@docusaurus/Head";

import Layout from "@theme/Layout";
import GoBack from "@site/src/components/demo/GoBack";
Expand All @@ -10,6 +11,9 @@ export default function Home(): JSX.Element {
title="Book a Meeting with Marcel | Wopee.io"
description="Schedule a meeting with Marcel Veselka, co-founder of Wopee.io. Discuss AI test automation, partnerships, or product questions."
>
<Head>
<meta name="robots" content="noindex, nofollow" />
</Head>
<Helmet>
<script
type="text/javascript"
Expand Down
4 changes: 4 additions & 0 deletions src/pages/onboarding/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { useLayoutEffect, useState } from "react";
import Head from "@docusaurus/Head";

import Layout from "@theme/Layout";

Expand Down Expand Up @@ -38,6 +39,9 @@ const TestWarez = () => {
description="Set up your Wopee.io account and start testing your web app in minutes. AI-powered test generation — no coding required."
wrapperClassName="dark:bg-gray-100"
>
<Head>
<meta name="robots" content="noindex, nofollow" />
</Head>
<div className="container">
{isLoading ? (
<div className="flex justify-center items-center h-[50vh]">
Expand Down
4 changes: 4 additions & 0 deletions src/pages/ux/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { useLayoutEffect, useState } from "react";
import Head from "@docusaurus/Head";

import Layout from "@theme/Layout";

Expand Down Expand Up @@ -38,6 +39,9 @@ const UserTestingProgram = () => {
description="Join the Wopee.io user testing program. Help shape the future of AI-powered test automation and get early access to new features."
wrapperClassName="dark:bg-gray-100"
>
<Head>
<meta name="robots" content="noindex, nofollow" />
</Head>
<div className="container">
{isLoading ? (
<div className="flex justify-center items-center h-[50vh]">
Expand Down
Loading