first commit

This commit is contained in:
2025-12-02 14:42:40 +05:30
commit e87bdd45a1
66 changed files with 9380 additions and 0 deletions

25
app/layout.tsx Normal file
View File

@@ -0,0 +1,25 @@
import type { Metadata } from "next";
import "./globals.css";
import { ToasterProvider } from "@/components/ui/toaster";
import { AuthProvider } from "./provider";
export const metadata: Metadata = {
title: "ATS System",
description: "Applicant Tracking System",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className="bg-gray-50">
<ToasterProvider />
{/* ✅ Wrap all routes (public & main) with AuthProvider */}
<AuthProvider>{children}</AuthProvider>
</body>
</html>
);
}