feature: add parishes
This commit is contained in:
parent
a2cd5337b3
commit
475b4f91c1
2 changed files with 15 additions and 4 deletions
|
|
@ -2,12 +2,13 @@ import styles from "./styles.module.scss"
|
||||||
|
|
||||||
type RowProps = {
|
type RowProps = {
|
||||||
children: React.ReactNode
|
children: React.ReactNode
|
||||||
|
gap?: number,
|
||||||
alignItems?: "center"
|
alignItems?: "center"
|
||||||
}
|
}
|
||||||
|
|
||||||
export const Row = ({ children, alignItems }: RowProps) => {
|
export const Row = ({ children, alignItems, gap }: RowProps) => {
|
||||||
return (
|
return (
|
||||||
<div className={styles.row} style={{ alignItems: alignItems }}>
|
<div className={styles.row} style={{ alignItems: alignItems, gap }}>
|
||||||
{children}
|
{children}
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,9 @@ export const Footer = () => {
|
||||||
<div className={styles.container}>
|
<div className={styles.container}>
|
||||||
<Section backgroundColor="soft">
|
<Section backgroundColor="soft">
|
||||||
<Container>
|
<Container>
|
||||||
<Row alignItems={"center"}>
|
<Row>
|
||||||
<Col>
|
<Col>
|
||||||
|
<br/>
|
||||||
<Logo
|
<Logo
|
||||||
color={"#ffffff"}
|
color={"#ffffff"}
|
||||||
textColor={"#426156"}
|
textColor={"#426156"}
|
||||||
|
|
@ -24,7 +25,15 @@ export const Footer = () => {
|
||||||
</Col>
|
</Col>
|
||||||
|
|
||||||
<Col>
|
<Col>
|
||||||
<Row>
|
<Row gap={30}>
|
||||||
|
<Col>
|
||||||
|
<strong><p>Gemeinden</p></strong>
|
||||||
|
<ul className={styles.list}>
|
||||||
|
<li><Link href={'/gemeinde/st-christophorus'}>St. Christophorus</Link></li>
|
||||||
|
<li><Link href={'/gemeinde/st-clara'}>St. Clara</Link></li>
|
||||||
|
<li><Link href={'/gemeinde/st-richard'}>St. Richard</Link></li>
|
||||||
|
</ul>
|
||||||
|
</Col>
|
||||||
<Col>
|
<Col>
|
||||||
<p>
|
<p>
|
||||||
<strong>Navigation</strong>
|
<strong>Navigation</strong>
|
||||||
|
|
@ -32,6 +41,7 @@ export const Footer = () => {
|
||||||
<ul className={styles.list}>
|
<ul className={styles.list}>
|
||||||
<li><Link href={"/kontakt"}>Kontakt</Link></li>
|
<li><Link href={"/kontakt"}>Kontakt</Link></li>
|
||||||
<li><Link href={"/gottesdienst"}>Gottesdienste</Link></li>
|
<li><Link href={"/gottesdienst"}>Gottesdienste</Link></li>
|
||||||
|
<li><Link href={"/veranstaltungen"}>Veranstaltungen</Link></li>
|
||||||
<li><Link href={"/datenschutz"}>Datenschutz</Link></li>
|
<li><Link href={"/datenschutz"}>Datenschutz</Link></li>
|
||||||
<li><Link href={"/schutzkonzept"}>Schutzkonzept</Link></li>
|
<li><Link href={"/schutzkonzept"}>Schutzkonzept</Link></li>
|
||||||
<li><Link href={"/impressum"}>Impressum</Link></li>
|
<li><Link href={"/impressum"}>Impressum</Link></li>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue