Files
srbhr--resume-matcher/apps/frontend/app/layout.tsx
T
wehub-resource-sync 5bdf4cc89a
Publish Docker Image / publish (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:39:36 +08:00

35 lines
915 B
TypeScript

import type { Metadata } from 'next';
import { Geist, Space_Grotesk } from 'next/font/google';
import './(default)/css/globals.css';
const spaceGrotesk = Space_Grotesk({
variable: '--font-space-grotesk',
subsets: ['latin'],
display: 'swap',
});
const geist = Geist({
variable: '--font-geist',
subsets: ['latin'],
display: 'swap',
});
export const metadata: Metadata = {
title: 'Resume Matcher',
description: 'Build your resume with Resume Matcher',
applicationName: 'Resume Matcher',
keywords: ['resume', 'matcher', 'job', 'application'],
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en-US" className="h-full" suppressHydrationWarning>
<body
className={`${geist.variable} ${spaceGrotesk.variable} antialiased bg-background text-ink-soft min-h-full`}
>
{children}
</body>
</html>
);
}