forked from BasedHardware/omi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloading.tsx
More file actions
29 lines (28 loc) · 1.08 KB
/
Copy pathloading.tsx
File metadata and controls
29 lines (28 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import DreamforceHeader from '@/src/components/dreamforce/dreamforce-header';
import { OnePointCircle } from 'iconoir-react';
import Image from 'next/image';
import { Fragment } from 'react';
export default function DreamforceLoading() {
return (
<Fragment>
<DreamforceHeader />
<div className="flex min-h-screen w-full bg-gradient-to-t from-[#d2e3ff] via-white via-55% to-white px-4">
<div className="mx-auto my-44 w-full max-w-screen-xl">
<Image
src={'/df-sf.png'}
alt="Dreamforce Banner"
width={1920}
height={1080}
className="mx-auto mb-10 h-[10rem] w-full rounded-3xl bg-cover object-cover md:h-[20rem] md:w-[80%]"
/>
<div className="mx-auto mt-20 max-w-screen-md space-y-8">
<p className="text-center text-lg text-gray-500">
We are loading the trends for you. Please wait a moment.
</p>
<OnePointCircle className="mx-auto animate-spin text-xl text-gray-500" />
</div>
</div>
</div>
</Fragment>
);
}