Skip to content

Commit 6d0e7f1

Browse files
authored
feat(schedule): add axopen to january sponsor (#354)
1 parent 389fc77 commit 6d0e7f1

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,6 @@ yarn-error.log*
3737
/test-results/
3838
/playwright-report/
3939
/playwright/.cache/
40+
41+
# IDE
42+
.idea

data/schedule.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Schedule } from '../modules/schedule/types';
2-
import { bedrock, CBTW, indy, leWagon, shodo, theodo, wildCodeSchool } from './sponsors';
2+
import { axopen, bedrock, CBTW, indy, leWagon, shodo, theodo, wildCodeSchool } from './sponsors';
33

44
export const schedule: Schedule[] = [
55
{
@@ -36,6 +36,7 @@ export const schedule: Schedule[] = [
3636
},
3737
{
3838
date: '01/15/2025',
39+
sponsor: axopen,
3940
},
4041
{
4142
date: '02/12/2025',

data/sponsors.ts

+6
Original file line numberDiff line numberDiff line change
@@ -77,3 +77,9 @@ export const theodo: Sponsor = {
7777
logo: '/sponsors/theodo.svg',
7878
url: 'https://www.theodo.fr/',
7979
};
80+
81+
export const axopen: Sponsor = {
82+
name: 'Axopen',
83+
logo: '/sponsors/axopen.svg',
84+
url: 'https://www.axopen.com/',
85+
};

modules/home/LastReplays.module.css

+6-4
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,10 @@
2727
align-items: center;
2828
inset: 0;
2929
backdrop-filter: blur(5px);
30-
content: 'voir la vidéo';
31-
font-size: 2rem;
32-
color: var(--grey-0);
33-
text-shadow: 1px 1px 2px var(--font-color-strong);
30+
content: 'Voir la vidéo';
31+
font-size: 1.5rem;
32+
font-weight: bold;
33+
text-transform: uppercase;
34+
color: var(--white-0);
35+
text-shadow: 0 0 5px var(--grey-0);
3436
}

public/sponsors/axopen.svg

+1
Loading

0 commit comments

Comments
 (0)