59 lines
2.0 KiB
TypeScript
59 lines
2.0 KiB
TypeScript
import type { Metadata } from "next"
|
|
import "./globals.css"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "AutoJobs — AI Applies to Jobs For You | Automated Job Application Platform",
|
|
description: "Stop manually applying to jobs. AutoJobs uses AI to find matching positions, rewrite your resume for each job, generate personalized cover letters, and apply automatically. Free plan available.",
|
|
keywords: ["AI job applicator", "automated job applications", "AI resume tailoring", "cover letter generator", "job search automation", "AI job hunter", "auto apply jobs"],
|
|
authors: [{ name: "AutoJobs" }],
|
|
creator: "AutoJobs",
|
|
publisher: "HostPioneers",
|
|
robots: {
|
|
index: true,
|
|
follow: true,
|
|
googleBot: {
|
|
index: true,
|
|
follow: true,
|
|
"max-video-preview": -1,
|
|
"max-image-preview": "large",
|
|
"max-snippet": -1,
|
|
},
|
|
},
|
|
openGraph: {
|
|
type: "website",
|
|
locale: "en_US",
|
|
url: "https://hostpioneers.com/autojobs",
|
|
siteName: "AutoJobs",
|
|
title: "AutoJobs — AI Applies to Jobs For You",
|
|
description: "Stop manually applying to jobs. AI finds, customizes, and applies for you automatically.",
|
|
images: [
|
|
{
|
|
url: "https://hostpioneers.com/autojobs/og-image.png",
|
|
width: 1200,
|
|
height: 630,
|
|
alt: "AutoJobs - AI Job Application Automation"
|
|
}
|
|
]
|
|
},
|
|
twitter: {
|
|
card: "summary_large_image",
|
|
title: "AutoJobs — AI Applies to Jobs For You",
|
|
description: "Stop manually applying to jobs. AI finds, customizes, and applies for you automatically.",
|
|
images: ["https://hostpioneers.com/autojobs/og-image.png"],
|
|
creator: "@AutoJobs"
|
|
},
|
|
alternates: {
|
|
canonical: "https://hostpioneers.com/autojobs"
|
|
},
|
|
icons: {
|
|
icon: "data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🤖</text></svg>"
|
|
}
|
|
}
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<body className="antialiased">{children}</body>
|
|
</html>
|
|
)
|
|
} |