Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added robots noindex meta tag #964

Merged
merged 3 commits into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
22 changes: 11 additions & 11 deletions inference/landing/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions inference/landing/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export const metadata: Metadata = {
icons: "/static/icon.png",
title: "Roboflow Inference Server",
description: "With no prior knowledge of machine learning or device-specific deployment, you can deploy a computer vision model to a range of devices and environments using the Roboflow Inference Server.",
robots: "noindex"
};

export default function RootLayout({
Expand Down
2 changes: 1 addition & 1 deletion inference/landing/src/app/notebook-instructions/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function Home() {
src="/static/roboflow_full_logo_color.svg"
alt="Roboflow Logo"
width={200}

height={100}
/>
</a>

Expand Down
5 changes: 5 additions & 0 deletions inference/landing/src/app/page.tsx
Copy link
Contributor Author

@bigbitbus bigbitbus Jan 22, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added the heights because otherwise the next js server was erroring with a 500.

Confirmed that adding these had no visual affect on the page.

Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export default function Home() {
src="/static/roboflow_full_logo_color.svg"
alt="Roboflow Logo"
width={200}
height={100}
/>
</a>
<div className="font-bold text-gray-900 text-5xl md:text-6xl">
Expand All @@ -40,24 +41,28 @@ export default function Home() {
src="/static/cone.svg"
alt="Roboflow Logo"
width={120}
height={120}
className="hidden md:flex flex-none absolute left-[-400px] -top-20 xl:left-[-450px] xl:-top-28 z-0"
/>
<Image
src="/static/trash.svg"
alt="Roboflow Logo"
width={110}
height={110}
className="hidden md:flex flex-none absolute -left-56 top-4 xl:-left-64 xl:top-6 z-0"
/>
<Image
src="/static/boat.svg"
alt="Roboflow Logo"
width={100}
height={100}
className="hidden md:flex flex-none absolute right-[-375px] top-36 xl:right-[-420px] xl:top-12 z-0"
/>
<Image
src="/static/car.svg"
alt="Roboflow Logo"
width={140}
height={140}
className="hidden md:flex flex-none absolute -right-56 top- xl:-right-56 xl:-top-6 z-0"
/>
</div>
Expand Down
Loading