diff --git a/sites/mainweb/components/Card.tsx b/sites/mainweb/components/Card.tsx new file mode 100644 index 0000000..791dd1d --- /dev/null +++ b/sites/mainweb/components/Card.tsx @@ -0,0 +1,16 @@ +import { ReactNode } from "react"; + +interface CardProps { + children: ReactNode; + className?: string; +} + +const Card = ({ children, className = "" }: CardProps) => { + return ( +
+ {children} +
+ ); +}; + +export default Card; diff --git a/sites/mainweb/public/.well-known/passkey-endpoints b/sites/mainweb/public/.well-known/passkey-endpoints new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/sites/mainweb/public/.well-known/passkey-endpoints @@ -0,0 +1 @@ +{}