Skip to content

Commit d0ebb21

Browse files
committed
💬(front) update copyright date
Updating copyright date to the current year.
1 parent 4ac4e44 commit d0ebb21

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/frontend/apps/standalone_site/src/features/Footer/components/Footer.spec.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ describe('<Footer />', () => {
4949
render(<Footer />);
5050
expect(await screen.findByText(/Test Page/i)).toBeInTheDocument();
5151
expect(screen.getByText(/General Conditions/i)).toBeInTheDocument();
52-
expect(screen.getByText(/© 2024 Marsha Education/i)).toBeInTheDocument();
52+
expect(screen.getByText(/© 2025 Marsha Education/i)).toBeInTheDocument();
5353
expect(
5454
screen.getByText('Financed by the recovery plan'),
5555
).toBeInTheDocument();
@@ -104,7 +104,7 @@ describe('<Footer />', () => {
104104
render(<Footer />);
105105
expect(await screen.findByText(/custom copyright/i)).toBeInTheDocument();
106106
expect(
107-
screen.queryByText(/© 2024 Marsha Education/i),
107+
screen.queryByText(/© 2025 Marsha Education/i),
108108
).not.toBeInTheDocument();
109109
expect(
110110
screen.queryByRole('link', { name: 'Twitter' }),
@@ -132,7 +132,7 @@ describe('<Footer />', () => {
132132

133133
render(<Footer />);
134134
expect(
135-
await screen.findByText(/© 2024 Marsha Education/i),
135+
await screen.findByText(/© 2025 Marsha Education/i),
136136
).toBeInTheDocument();
137137
expect(
138138
screen.queryByRole('link', { name: 'Twitter' }),

src/frontend/apps/standalone_site/src/features/Footer/components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const Footer = ({ withoutWave }: { withoutWave?: boolean }) => {
6161
const { getSiteConfig } = useSiteConfig();
6262
const siteConfig = getSiteConfig();
6363

64-
const defaultFooterCopyright = 2024 Marsha Education';
64+
const defaultFooterCopyright = 2025 Marsha Education';
6565

6666
return (
6767
<Box type="footer" margin={{ top: 'auto' }} color="white" fill="horizontal">

0 commit comments

Comments
 (0)