import Image from "next/image"; import React, { ReactNode } from "react"; interface Props { text?: string; children: ReactNode; } export default function CenteredForm({ text, children }: Props) { return (
Linkwarden {text ? (

{text}

) : undefined} {children}

© {new Date().getFullYear()} Linkwarden. All rights reserved.

); }