refactor: update application name and related metadata from SWOT Manager to Workshop Manager for consistency across the project

This commit is contained in:
Julien Froidefond
2026-02-17 10:05:51 +01:00
parent cc7e73ce7b
commit 7f3eabbdb2
7 changed files with 12 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
# SWOT Manager - Development Book # Workshop Manager - Development Book
Application de gestion d'ateliers SWOT pour entretiens managériaux. Application de gestion d'ateliers pour entretiens managériaux.
## Stack Technique ## Stack Technique

View File

@@ -4,6 +4,7 @@ import { useState } from 'react';
import { signIn } from 'next-auth/react'; import { signIn } from 'next-auth/react';
import { useRouter } from 'next/navigation'; import { useRouter } from 'next/navigation';
import Link from 'next/link'; import Link from 'next/link';
import { RocketIcon } from '@/components/ui';
export default function LoginPage() { export default function LoginPage() {
const router = useRouter(); const router = useRouter();
@@ -44,8 +45,8 @@ export default function LoginPage() {
<div className="w-full max-w-md"> <div className="w-full max-w-md">
<div className="mb-8 text-center"> <div className="mb-8 text-center">
<Link href="/" className="inline-flex items-center gap-2"> <Link href="/" className="inline-flex items-center gap-2">
<span className="text-3xl">📊</span> <RocketIcon className="h-8 w-8 shrink-0 text-primary" />
<span className="text-2xl font-bold text-foreground">SWOT Manager</span> <span className="text-2xl font-bold text-foreground">Workshop Manager</span>
</Link> </Link>
<p className="mt-2 text-muted">Connectez-vous à votre compte</p> <p className="mt-2 text-muted">Connectez-vous à votre compte</p>
</div> </div>

View File

@@ -4,6 +4,7 @@ import { useState } from 'react';
import { signIn } from 'next-auth/react'; import { signIn } from 'next-auth/react';
import { useRouter } from 'next/navigation'; import { useRouter } from 'next/navigation';
import Link from 'next/link'; import Link from 'next/link';
import { RocketIcon } from '@/components/ui';
export default function RegisterPage() { export default function RegisterPage() {
const router = useRouter(); const router = useRouter();
@@ -73,8 +74,8 @@ export default function RegisterPage() {
<div className="w-full max-w-md"> <div className="w-full max-w-md">
<div className="mb-8 text-center"> <div className="mb-8 text-center">
<Link href="/" className="inline-flex items-center gap-2"> <Link href="/" className="inline-flex items-center gap-2">
<span className="text-3xl">📊</span> <RocketIcon className="h-8 w-8 shrink-0 text-primary" />
<span className="text-2xl font-bold text-foreground">SWOT Manager</span> <span className="text-2xl font-bold text-foreground">Workshop Manager</span>
</Link> </Link>
<p className="mt-2 text-muted">Créez votre compte</p> <p className="mt-2 text-muted">Créez votre compte</p>
</div> </div>

View File

@@ -1,7 +1,7 @@
@import 'tailwindcss'; @import 'tailwindcss';
/* ============================================ /* ============================================
SWOT Manager - CSS Variables Theme System Workshop Manager - CSS Variables Theme System
============================================ */ ============================================ */
:root { :root {

View File

@@ -15,7 +15,7 @@ const geistMono = Geist_Mono({
export const metadata: Metadata = { export const metadata: Metadata = {
title: 'Workshop Manager', title: 'Workshop Manager',
description: "Application de gestion d'ateliers SWOT pour entretiens managériaux", description: "Application de gestion d'ateliers pour entretiens managériaux",
icons: { icons: {
icon: '/icon.svg', icon: '/icon.svg',
apple: '/rocket_blue_gradient_large_logo.jpg', apple: '/rocket_blue_gradient_large_logo.jpg',

View File

@@ -4,7 +4,7 @@ export default function manifest(): MetadataRoute.Manifest {
return { return {
name: 'Workshop Manager', name: 'Workshop Manager',
short_name: 'Workshop', short_name: 'Workshop',
description: "Application de gestion d'ateliers SWOT pour entretiens managériaux", description: "Application de gestion d'ateliers pour entretiens managériaux",
start_url: '/', start_url: '/',
display: 'standalone', display: 'standalone',
icons: [ icons: [

View File

@@ -1,5 +1,5 @@
// ============================================ // ============================================
// SWOT Manager - Type Definitions // Workshop Manager - Type Definitions
// ============================================ // ============================================
export type SwotCategory = 'STRENGTH' | 'WEAKNESS' | 'OPPORTUNITY' | 'THREAT'; export type SwotCategory = 'STRENGTH' | 'WEAKNESS' | 'OPPORTUNITY' | 'THREAT';