src/app/interface/advert/index.tsx CHANGED
@@ -6,9 +6,9 @@ export function Advert() {
6
  variant="outline"
7
  className="bg-yellow-400 border-stone-600/30 hover:bg-yellow-300"
8
  onClick={() => {
9
- window.open("https://huggingface.co/spaces/jbilcke-hf/FacePoke", "_blank")
10
  }}>
11
- <span className="hidden md:inline">Try my new space</span>
12
  <span className="inline md:hidden">...</span>
13
  </Button>
14
  )
 
6
  variant="outline"
7
  className="bg-yellow-400 border-stone-600/30 hover:bg-yellow-300"
8
  onClick={() => {
9
+ window.open("https://huggingface.co/spaces/jbilcke-hf/ai-stories-factory", "_blank")
10
  }}>
11
+ <span className="hidden md:inline">Make AI stories</span>
12
  <span className="inline md:hidden">...</span>
13
  </Button>
14
  )
src/app/interface/bottom-bar/bottom-bar.tsx CHANGED
@@ -30,7 +30,7 @@ function BottomBar() {
30
 
31
  const preset = useStore(s => s.preset)
32
 
33
- const canSeeBetaFeatures = false // getParam<boolean>("beta", false)
34
 
35
  const allStatus = Object.values(panelGenerationStatus)
36
  const remainingImages = allStatus.reduce((acc, s) => (acc + (s ? 1 : 0)), 0)
 
30
 
31
  const preset = useStore(s => s.preset)
32
 
33
+ const canSeeBetaFeatures = true // getParam<boolean>("beta", false)
34
 
35
  const allStatus = Object.values(panelGenerationStatus)
36
  const remainingImages = allStatus.reduce((acc, s) => (acc + (s ? 1 : 0)), 0)