16 lines
441 B
TypeScript
16 lines
441 B
TypeScript
import React from "react";
|
|
|
|
const LoadingPage: React.FC = () => {
|
|
return (
|
|
<div className="min-h-screen flex flex-col items-center justify-center bg-slate-950 text-white">
|
|
<div className="flex items-center gap-3 text-lg font-semibold tracking-wide uppercase">
|
|
<span className="h-3 w-3 rounded-full bg-brand-500 animate-pulse" />
|
|
Loading experience…
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default LoadingPage;
|
|
|