···1+import CollectionsContainer from '@/features/collections/containers/collectionsContainer/CollectionsContainer';
000000000000000000000000000000000000000000000000000000000000000000023+export default function Page() {
4+ return <CollectionsContainer />;
0000000000000005}
+8-1
src/webapp/app/(authenticated)/library/layout.tsx
···01import type { Metadata } from 'next';
023export const metadata: Metadata = {
4 title: 'Library',
···10}
1112export default function Layout(props: Props) {
13- return props.children;
0000014}
···1+import Header from '@/components/navigation/header/Header';
2import type { Metadata } from 'next';
3+import { Fragment } from 'react';
45export const metadata: Metadata = {
6 title: 'Library',
···12}
1314export default function Layout(props: Props) {
15+ return (
16+ <Fragment>
17+ <Header />
18+ {props.children}
19+ </Fragment>
20+ );
21}
+2-11
src/webapp/app/(authenticated)/library/page.tsx
···1-import { Anchor, Text } from '@mantine/core';
2-import Link from 'next/link';
34export default function Page() {
5- return (
6- <Text>
7- Under construction. Check{' '}
8- <Anchor component={Link} href={'/my-cards'}>
9- My Cards
10- </Anchor>{' '}
11- in the meantime
12- </Text>
13- );
14}
···1+import LibraryContainer from '@/features/library/containers/libraryContainer/LibraryContainer';
023export default function Page() {
4+ return <LibraryContainer />;
000000005}