mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-26 02:58:48 -06:00
* colors, login, UI, fonts * add poppins font * add _document with included favicon and smooth-scrolling * update favicon imports Co-authored-by: knugget <johannes@knugget.de>
12 lines
354 B
TypeScript
12 lines
354 B
TypeScript
export default function Loading() {
|
|
return (
|
|
<div className="min-h-screen px-4 py-16 bg-white sm:px-6 sm:py-24 md:grid md:place-items-center lg:px-8">
|
|
<div className="mx-auto max-w-max">
|
|
<main className="sm:flex">
|
|
<p className="mt-1 text-base text-darkgray-500">Loading...</p>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|