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
20 changes: 20 additions & 0 deletions app/(main)/case-studies/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,26 @@ import SectionLabel from "@/components/SectionLabel";
export const metadata: Metadata = {
title: "Case Studies | Good Robot Co.",
description: "Real projects, real growth. See how we help businesses generate leads, increase capacity, and optimize operations.",
openGraph: {
title: "Case Studies | Good Robot Co.",
description: "Real projects, real growth. See how we help businesses generate leads, increase capacity, and optimize operations.",
url: "https://goodrobotco.com/case-studies",
type: "website",
images: [
{
url: "/og-image.png",
width: 1200,
height: 630,
alt: "Good Robot Co. - Technology That Works For Your Business",
},
],
},
twitter: {
card: "summary_large_image",
title: "Case Studies | Good Robot Co.",
description: "Real projects, real growth. See how we help businesses generate leads, increase capacity, and optimize operations.",
images: ["/og-image.png"],
},
};

const caseStudies = [
Expand Down
1 change: 1 addition & 0 deletions app/(main)/faq/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export const metadata: Metadata = {
url: '/og-image.png',
width: 1200,
height: 630,
alt: 'Good Robot Co. - Technology That Works For Your Business',
},
],
},
Expand Down
4 changes: 4 additions & 0 deletions app/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import './globals.css'
import { Analytics } from '@vercel/analytics/next'
import { SpeedInsights } from '@vercel/speed-insights/next'
import { SEO } from '@/lib/seo.constants'
import { JsonLd } from '@/components/JsonLd'
import { buildOrganizationSchema } from '@/lib/schema-builders'

const dmSans = DM_Sans({
subsets: ['latin'],
Expand Down Expand Up @@ -57,6 +59,7 @@ export default function RootLayout({
return (
<html lang="en" className={`${dmSans.variable} ${fraunces.variable}`}>
<body className="bg-cream text-charcoal text-[18px] leading-relaxed overflow-x-hidden font-body">
<JsonLd data={buildOrganizationSchema()} />
{children}
<Analytics />
<SpeedInsights />
Expand Down