Update branding references throughout the application to reflect Peaksys as the developer, including changes to the README, admin user email, candidate team names, and metadata descriptions.
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 2m36s

This commit is contained in:
Julien Froidefond
2026-02-20 13:27:44 +01:00
parent 328200f8b4
commit e30cfedea8
6 changed files with 11 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
# IA Gen Maturity Evaluator # IA Gen Maturity Evaluator
Production-ready web app for evaluating IA/GenAI maturity of candidates. Built for the Cars Front team. Production-ready web app for evaluating IA/GenAI maturity of candidates. Built by Peaksys for Peaksys.
## Tech Stack ## Tech Stack
@@ -33,7 +33,7 @@ Open [http://localhost:3000](http://localhost:3000).
- **3 candidates** with sample evaluations (Alice Chen, Bob Martin, Carol White) - **3 candidates** with sample evaluations (Alice Chen, Bob Martin, Carol White)
- **2 templates**: Full 15-dimensions, Short 8-dimensions - **2 templates**: Full 15-dimensions, Short 8-dimensions
- **Admin user**: `admin@cars-front.local` (mock auth) - **Admin user**: `admin@peaksys.local` (mock auth)
## API Routes ## API Routes

View File

@@ -437,9 +437,9 @@ async function main() {
const adminHash = bcrypt.hashSync("admin123", 10); const adminHash = bcrypt.hashSync("admin123", 10);
const admin = await prisma.user.upsert({ const admin = await prisma.user.upsert({
where: { email: "admin@cars-front.local" }, where: { email: "admin@peaksys.local" },
create: { create: {
email: "admin@cars-front.local", email: "admin@peaksys.local",
name: "Admin User", name: "Admin User",
passwordHash: adminHash, passwordHash: adminHash,
role: "admin", role: "admin",
@@ -456,19 +456,19 @@ async function main() {
{ {
name: "Alice Chen", name: "Alice Chen",
role: "Senior ML Engineer", role: "Senior ML Engineer",
team: "Cars Front", team: "Peaksys",
evaluator: "Jean Dupont", evaluator: "Jean Dupont",
}, },
{ {
name: "Bob Martin", name: "Bob Martin",
role: "Data Scientist", role: "Data Scientist",
team: "Cars Front", team: "Peaksys",
evaluator: "Marie Curie", evaluator: "Marie Curie",
}, },
{ {
name: "Carol White", name: "Carol White",
role: "AI Product Manager", role: "AI Product Manager",
team: "Cars Data", team: "Data",
evaluator: "Jean Dupont", evaluator: "Jean Dupont",
}, },
]; ];

View File

@@ -5,7 +5,7 @@ import { NextRequest, NextResponse } from "next/server";
* In production: use NextAuth, Clerk, or Supabase Auth * In production: use NextAuth, Clerk, or Supabase Auth
*/ */
const MOCK_ADMIN = { const MOCK_ADMIN = {
email: "admin@cars-front.local", email: "admin@peaksys.local",
name: "Admin User", name: "Admin User",
role: "admin", role: "admin",
}; };

View File

@@ -17,7 +17,7 @@ const geistMono = Geist_Mono({
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Évaluateur Maturité IA Gen", title: "Évaluateur Maturité IA Gen",
description: "Équipe Cars Front - Outil d'évaluation de la maturité IA Gen", description: "Outil d'évaluation de la maturité IA Gen par Peaksys",
}; };
export default function RootLayout({ export default function RootLayout({

View File

@@ -61,7 +61,7 @@ export default function LandingPage() {
<div className="border-t border-zinc-200 dark:border-zinc-700 py-8 text-center"> <div className="border-t border-zinc-200 dark:border-zinc-700 py-8 text-center">
<p className="font-mono text-xs text-zinc-500 dark:text-zinc-400"> <p className="font-mono text-xs text-zinc-500 dark:text-zinc-400">
IA Gen Maturity Evaluator · Équipe Cars Front IA Gen Maturity Evaluator · Peaksys
</p> </p>
</div> </div>
</div> </div>

View File

@@ -62,7 +62,7 @@ export function CandidateForm({
onChange={(e) => onChange("candidateTeam", e.target.value)} onChange={(e) => onChange("candidateTeam", e.target.value)}
className={inputClass} className={inputClass}
disabled={disabled} disabled={disabled}
placeholder="Cars Front" placeholder="Peaksys"
/> />
</div> </div>
<div className="border-t border-zinc-200 dark:border-zinc-600 pt-4 sm:col-span-2 lg:col-span-3" /> <div className="border-t border-zinc-200 dark:border-zinc-600 pt-4 sm:col-span-2 lg:col-span-3" />