main
Last change
on this file since 87c9f1e was 87c9f1e, checked in by Naum Shapkarovski <naumshapkarovski@…>, 5 weeks ago |
update the seed script. update the prisma schema, use mapping
|
-
Property mode
set to
100644
|
File size:
404 bytes
|
Rev | Line | |
---|
[5d6f37a] | 1 | 'use client';
|
---|
| 2 |
|
---|
| 3 | // components
|
---|
| 4 | import { SplashScreen } from 'src/components/loading-screen';
|
---|
| 5 |
|
---|
| 6 | // ----------------------------------------------------------------------
|
---|
| 7 |
|
---|
| 8 | export default function Loading() {
|
---|
[87c9f1e] | 9 | return (
|
---|
| 10 | <div className="flex min-h-screen items-center justify-center">
|
---|
| 11 | <div className="animate-spin rounded-full h-32 w-32 border-t-2 border-b-2 border-blue-500"></div>
|
---|
| 12 | </div>
|
---|
| 13 | );
|
---|
[5d6f37a] | 14 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.