Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import type { Metadata } from "next";
import "./globals.css";
import { Providers } from "./providers";
import { Analytics } from "@vercel/analytics/next";

export const metadata: Metadata = {
title: "CVScan – AI Job Search Assistant",
Expand Down Expand Up @@ -37,6 +38,7 @@ export default function RootLayout({
Beta – No authentication or payments required. All features are open and free during public beta.
</div>
<Providers>{children}</Providers>
<Analytics />
</body>
</html>
);
Expand Down
2 changes: 1 addition & 1 deletion app/next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import "./.next/types/routes.d.ts";
import "./.next/dev/types/routes.d.ts";

// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
3 changes: 2 additions & 1 deletion app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,18 @@
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@supabase/supabase-js": "^2.90.1",
"@vercel/analytics": "^2.0.1",
"docx": "^9.6.1",
"jszip": "^3.10.1",
"next": "^16.1.3",
"next-auth": "^4.24.14",
"nodemailer": "^8.0.1",
"openai": "^6.16.0",
"pdf-lib": "^1.17.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"resend": "^6.8.0",
"tesseract.js": "^5.1.0"

},
"devDependencies": {
"@playwright/test": "^1.58.2",
Expand Down
Loading