35 lines
915 B
TypeScript
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>
|
|
);
|
|
}
|