83 lines
2.8 KiB
TypeScript
83 lines
2.8 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import { Source_Sans_3 } from "next/font/google";
|
|
import "./globals.css";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import Tag from "@/tag/Tag";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
|
|
const halant = Halant({
|
|
variable: "--font-halant",
|
|
subsets: ["latin"],
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
});
|
|
|
|
const inter = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
const sourceSans3 = Source_Sans_3({
|
|
variable: "--font-source-sans-3",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "GitHubPowered | Evidence-Based Developer Hiring Platform",
|
|
description: "Skip resume fraud. Match developers to roles using verified GitHub contributions and AI-extracted skills. Transparent, data-driven hiring for recruiters and careers for developers.",
|
|
keywords: "github hiring, developer recruitment, skill verification, resume fraud prevention, evidence-based hiring, technical recruitment platform",
|
|
metadataBase: new URL("https://githubpowered.com"),
|
|
alternates: {
|
|
canonical: "https://githubpowered.com",
|
|
},
|
|
openGraph: {
|
|
title: "GitHubPowered | Resumes Are Dead. Evidence Is The Future.",
|
|
description: "Evidence-based hiring platform that matches developers to roles using verified GitHub contributions. Stop interviewing unqualified candidates.",
|
|
url: "https://githubpowered.com",
|
|
siteName: "GitHubPowered",
|
|
images: [
|
|
{
|
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BDxjKXuoMwC53dMKmEYhSqPlv3/a-modern-github-dashboard-interface-with-1774037664326-51bebb69.png",
|
|
alt: "GitHubPowered platform interface showing GitHub verification",
|
|
},
|
|
],
|
|
type: "website",
|
|
},
|
|
twitter: {
|
|
card: "summary_large_image",
|
|
title: "GitHubPowered | Evidence-Based Developer Hiring",
|
|
description: "Match developers using verified code. No more resume fraud. Real evidence, real hiring.",
|
|
images: [
|
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BDxjKXuoMwC53dMKmEYhSqPlv3/a-modern-github-dashboard-interface-with-1774037664326-51bebb69.png",
|
|
],
|
|
},
|
|
robots: {
|
|
index: true,
|
|
follow: true,
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body
|
|
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
|
>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
} |