File size: 723 Bytes
58379d0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

import { Dialog, DialogContent } from "@/components/ui/dialog"
import { Login } from "./login"

export function AuthWall({ show }: { show: boolean }) {
  return (
    <Dialog open={show}>
      <DialogContent className="sm:max-w-[800px]">
        <div className="grid gap-4 py-4 text-stone-800 text-center text-xl">
        <p className="">
          The AI Stories Factory is an app to generate consistent video stories.
        </p>
        <p>
          By default it uses Hugging Face for story and image generation,<br/>
          our service is free of charge but we would like you to sign-in 👇
         </p>
         <p>
          <Login />
         </p>
        </div>
      </DialogContent>
    </Dialog>
  )
}