File size: 441 Bytes
0bfe2e3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
'use client';

import { LoadingOverlay } from '@/components/ui/loading-spinner';
import Image from 'next/image';
import React from 'react';

export default function Page() {
  return (
    <LoadingOverlay showSpinner={false}>
      <Image
        src="/logo_2.png"
        alt="Launching..."
        priority
        width={180}
        height={180}
        className="animate-pulse"
      />
      Launching...
    </LoadingOverlay>
  );
}