Skip to content
Open
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions frontend-next-migration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"dev": "next dev -p 5173",
"build": "next build --no-lint",
"start": "next start",
"start-dev": "next start -p 5173",
"test": "jest",
"test:ci": "jest --ci --config=jest.ci-config.ts",
"test:ci-retry-failed": "jest --ci --onlyFailures --config=jest.ci-config.ts",
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import { createPage } from '@/app/_helpers';
import { PictureGalleryPageProps } from '@/preparedPages/PictureGalleryPages';
import { getServerTranslation } from '@/shared/i18n';
import { AppExternalLinks } from '@/shared/appLinks/appExternalLinks';
import { getRouteGalleryPage } from '@/shared/appLinks/RoutePaths';
import { defaultOpenGraph } from '@/shared/seoConstants';

export async function _getPage(lng: string) {
const { t } = await getServerTranslation(lng, 'picture-galleries');
return createPage<PictureGalleryPageProps>({
return createPage({
buildPage: () => ({
title: t('picture-galleries'),
infoText: t('info-text'),
Expand Down

This file was deleted.

3 changes: 3 additions & 0 deletions frontend-next-migration/src/app/_styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
overflow-x: hidden;
}
}
html {
scroll-behavior: smooth;
}

body {
font: 16px/24px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@
--content-primary: #FFA100;
--base-card-background: #1E3544;
--drop-shadows: #121212;
--white-text: #faf9f6;


// border-radius
Expand Down

This file was deleted.

This file was deleted.

Loading
Loading