Marketing Website
This commit is contained in:
15
frontend/src/marketing/components/LoadingPage.tsx
Normal file
15
frontend/src/marketing/components/LoadingPage.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user