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

View File

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

View File

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

View File

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

View File

@@ -15,7 +15,7 @@ const geistMono = Geist_Mono({
export const metadata: Metadata = {
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: {
icon: '/icon.svg',
apple: '/rocket_blue_gradient_large_logo.jpg',

View File

@@ -4,7 +4,7 @@ export default function manifest(): MetadataRoute.Manifest {
return {
name: 'Workshop Manager',
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: '/',
display: 'standalone',
icons: [

View File

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