feat: add branding assets and refine login/sidebar UI
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
@@ -3,6 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<link rel="icon" type="image/jpeg" href="/favicon.jpg" />
|
||||||
<title>Sanae Benkhlifa Sports - Système de Gestion</title>
|
<title>Sanae Benkhlifa Sports - Système de Gestion</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
BIN
public/favicon.jpg
Normal file
BIN
public/favicon.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 137 KiB |
566
public/favicon.svg
Normal file
566
public/favicon.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 4.0 MiB |
BIN
src/assets/SB Sports.jpg
Normal file
BIN
src/assets/SB Sports.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 137 KiB |
566
src/assets/SBsports.svg
Normal file
566
src/assets/SBsports.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 4.0 MiB |
@@ -12,6 +12,10 @@ body {
|
|||||||
background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
|
background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.gradient-sidebar {
|
||||||
|
background: linear-gradient(160deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
|
||||||
|
}
|
||||||
|
|
||||||
.card-shadow {
|
.card-shadow {
|
||||||
box-shadow:
|
box-shadow:
|
||||||
0 10px 15px -3px rgba(0, 0, 0, 0.1),
|
0 10px 15px -3px rgba(0, 0, 0, 0.1),
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import {
|
|||||||
History,
|
History,
|
||||||
UserCog,
|
UserCog,
|
||||||
} from "lucide-vue-next";
|
} from "lucide-vue-next";
|
||||||
|
import logoUrl from "../assets/SB Sports.jpg";
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
|
|
||||||
@@ -55,36 +56,14 @@ const isActive = (name) => route.name === name;
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<nav
|
<nav
|
||||||
class="lg:w-72 w-full gradient-brand text-white flex flex-col p-6 shadow-xl"
|
class="lg:w-72 w-full gradient-sidebar text-white flex flex-col p-6 shadow-xl"
|
||||||
>
|
>
|
||||||
<!-- Logo -->
|
<!-- Logo -->
|
||||||
<div class="flex items-center gap-3 mb-10 overflow-hidden">
|
<div class="mb-10 px-2 flex items-center gap-4 lg:block">
|
||||||
<div class="bg-white p-2 rounded-lg logo-shine">
|
<img :src="logoUrl" alt="SB Sport" class="w-24 h-24 lg:w-full lg:h-auto object-contain rounded-2xl shrink-0" />
|
||||||
<svg
|
<div class="lg:hidden">
|
||||||
width="40"
|
<p class="font-black text-lg leading-tight">P.E. Prof.</p>
|
||||||
height="40"
|
<p class="font-bold text-base text-blue-100">Sanae Benkhlifa</p>
|
||||||
viewBox="0 0 100 100"
|
|
||||||
fill="none"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
>
|
|
||||||
<circle cx="50" cy="50" r="45" fill="#1e40af" />
|
|
||||||
<path
|
|
||||||
d="M30 70 L45 30 L55 50 L70 20"
|
|
||||||
stroke="white"
|
|
||||||
stroke-width="8"
|
|
||||||
stroke-linecap="round"
|
|
||||||
stroke-linejoin="round"
|
|
||||||
/>
|
|
||||||
<circle cx="70" cy="20" r="5" fill="white" />
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<h1 class="font-black text-xl leading-tight">SB SPORT</h1>
|
|
||||||
<p
|
|
||||||
class="text-[10px] text-blue-100 uppercase tracking-widest font-medium"
|
|
||||||
>
|
|
||||||
Sanae Benkhlifa
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import { ref } from "vue";
|
|||||||
import { useRouter } from "vue-router";
|
import { useRouter } from "vue-router";
|
||||||
import { useAuthStore } from "../stores/auth";
|
import { useAuthStore } from "../stores/auth";
|
||||||
import { LogIn, ShieldCheck } from "lucide-vue-next";
|
import { LogIn, ShieldCheck } from "lucide-vue-next";
|
||||||
|
import logoUrl from "../assets/SB Sports.jpg";
|
||||||
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const auth = useAuthStore();
|
const auth = useAuthStore();
|
||||||
@@ -31,29 +32,7 @@ async function handleLogin() {
|
|||||||
<div class="bg-white rounded-2xl shadow-2xl w-full max-w-md p-10">
|
<div class="bg-white rounded-2xl shadow-2xl w-full max-w-md p-10">
|
||||||
<!-- Logo -->
|
<!-- Logo -->
|
||||||
<div class="flex flex-col items-center mb-8">
|
<div class="flex flex-col items-center mb-8">
|
||||||
<div class="bg-blue-900 p-4 rounded-2xl mb-4 shadow-lg">
|
<img :src="logoUrl" alt="SB Sport" class="h-20 w-auto object-contain mb-2" />
|
||||||
<svg
|
|
||||||
width="48"
|
|
||||||
height="48"
|
|
||||||
viewBox="0 0 100 100"
|
|
||||||
fill="none"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
>
|
|
||||||
<circle cx="50" cy="50" r="45" fill="#1e40af" />
|
|
||||||
<path
|
|
||||||
d="M30 70 L45 30 L55 50 L70 20"
|
|
||||||
stroke="white"
|
|
||||||
stroke-width="8"
|
|
||||||
stroke-linecap="round"
|
|
||||||
stroke-linejoin="round"
|
|
||||||
/>
|
|
||||||
<circle cx="70" cy="20" r="5" fill="white" />
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
||||||
<h1 class="text-2xl font-black text-blue-900">SB SPORT</h1>
|
|
||||||
<p class="text-xs text-gray-400 uppercase tracking-widest mt-1">
|
|
||||||
Sanae Benkhlifa
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Form -->
|
<!-- Form -->
|
||||||
|
|||||||
Reference in New Issue
Block a user