Skip to content

Commit

Permalink
💄 Change title of full postulates page
Browse files Browse the repository at this point in the history
  • Loading branch information
4fra committed Jan 6, 2025
1 parent 4c8d41d commit d00c1b5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/app/postulaty/page.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import {Container, Title} from "@mantine/core";
import {Container, Text, Title} from "@mantine/core";
import {postulates} from "@/app/postulaty/data/postulates";
import Postulate from "@/components/Postulate/Postulate";
import classes from './page.module.css';

export default function Page() {
return (
<Container className={classes.inner}>
<Title mb={30}>Moje postulaty</Title>
<Title>Pełne postulaty</Title>
<Text mb={30}>Franciszka Grzywaczewskiego, kandydata na przewodniczącego SU ZSŁ w Gdańsku</Text>
{postulates.map((postulate, index) => (
<Postulate key={index} title={postulate.title} description={postulate.description}/>
))}
Expand Down

0 comments on commit d00c1b5

Please sign in to comment.