diff --git a/src/components/Flex/Row.tsx b/src/components/Flex/Row.tsx index 31f8240..63be919 100644 --- a/src/components/Flex/Row.tsx +++ b/src/components/Flex/Row.tsx @@ -2,12 +2,13 @@ import styles from "./styles.module.scss" type RowProps = { children: React.ReactNode + gap?: number, alignItems?: "center" } -export const Row = ({ children, alignItems }: RowProps) => { +export const Row = ({ children, alignItems, gap }: RowProps) => { return ( -
Gemeinden
+Navigation @@ -32,6 +41,7 @@ export const Footer = () => {