Files
autojobs/frontend/app/layout.tsx
T

19 lines
603 B
TypeScript

import type { Metadata } from "next"
import "./globals.css"
export const metadata: Metadata = {
title: "AutoJobs — AI Applies to Jobs For You",
description: "Upload your resume, set your preferences, and let AI find and apply to jobs automatically.",
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>
)
}