Openstatus www.openstatus.dev
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

๐ŸŒ small seo update (#605)

authored by

Thibault Le Ouay and committed by
GitHub
58e9a6f5 a12c1639

+33 -2
apps/web/public/assets/posts/migration-backend-from-vercel-to-fly/fly-dashboard.png

This is a binary file and will not be displayed.

+2 -2
apps/web/src/app/play/checker/_components/checker-play.tsx
··· 6 6 return ( 7 7 <Shell className="grid gap-8"> 8 8 <HeaderPlay 9 - title="Monitoring" 10 - description="Experience the performance of your application from the different continents." 9 + title="Is your endpoint fast?" 10 + description="Check the performance of your website, API from the different continents." 11 11 /> 12 12 <div className="mx-auto grid w-full max-w-xl gap-6"> 13 13 <CheckerForm />
+20
apps/web/src/app/play/page.tsx
··· 1 + import type { Metadata } from "next"; 1 2 import Link from "next/link"; 2 3 import type { LucideIcon } from "lucide-react"; 3 4 import { Clock, FileCode, Gauge, Palette, PanelTop } from "lucide-react"; ··· 7 8 import { Shell } from "@/components/dashboard/shell"; 8 9 import { BackButton } from "@/components/layout/back-button"; 9 10 import { cn } from "@/lib/utils"; 11 + import { 12 + defaultMetadata, 13 + ogMetadata, 14 + twitterMetadata, 15 + } from "../shared-metadata"; 16 + 17 + export const metadata: Metadata = { 18 + ...defaultMetadata, 19 + title: "Free Tools ", 20 + openGraph: { 21 + ...ogMetadata, 22 + title: "Free Tools | OpenStatus", 23 + url: "https://www.openstatus.dev/play", 24 + }, 25 + twitter: { 26 + ...twitterMetadata, 27 + title: "Free Tools | OpenStatus", 28 + }, 29 + }; 10 30 11 31 export default async function PlayPage() { 12 32 return (
+11
apps/web/src/app/play/status/page.tsx
··· 1 + import type { Metadata } from "next"; 1 2 import * as z from "zod"; 2 3 3 4 import { BackButton } from "@/components/layout/back-button"; ··· 9 10 const searchParamsSchema = z.object({ 10 11 timezone: z.string().optional(), 11 12 }); 13 + 14 + export const metadata: Metadata = { 15 + title: "Status Page Preview", 16 + description: "Display your status page with real time data.", 17 + openGraph: { 18 + title: "Status Page Preview", 19 + description: "Display your status page with real time data.", 20 + url: "https://www.openstatus.dev/play/status", 21 + }, 22 + }; 12 23 13 24 export default async function PlayPage({ 14 25 searchParams,