mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-09 14:00:15 -04:00
25 lines
730 B
TypeScript
25 lines
730 B
TypeScript
// components/LoggingOut.js
|
|
import styles from "./Loading.module.css";
|
|
import Image from "next/image";
|
|
|
|
const LoggingOut = () => {
|
|
return (
|
|
<div className={styles.loadingOverlay}>
|
|
<div className={styles.loadingContent}>
|
|
<Image
|
|
src="/logo.png"
|
|
alt="Compass Center logo."
|
|
width={100}
|
|
height={91}
|
|
style={{ height: "auto", width: "auto" }}
|
|
priority
|
|
/>
|
|
<h1 className={styles.loadingTitle}>Signing out...</h1>
|
|
<div className={styles.loadingSpinner}></div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default LoggingOut;
|