Julian Bilcke
commited on
Commit
Β·
8f617f6
1
Parent(s):
5495410
fix the Print + soft rebranding
Browse files- README.md +2 -2
- src/app/interface/panel/index.tsx +1 -1
- src/app/layout.tsx +2 -2
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
title: Comic Factory
|
| 3 |
emoji: π©βπ¨
|
| 4 |
colorFrom: red
|
| 5 |
colorTo: yellow
|
|
@@ -8,4 +8,4 @@ pinned: true
|
|
| 8 |
app_port: 3000
|
| 9 |
---
|
| 10 |
|
| 11 |
-
Comic Factory
|
|
|
|
| 1 |
---
|
| 2 |
+
title: AI Comic Factory
|
| 3 |
emoji: π©βπ¨
|
| 4 |
colorFrom: red
|
| 5 |
colorTo: yellow
|
|
|
|
| 8 |
app_port: 3000
|
| 9 |
---
|
| 10 |
|
| 11 |
+
AI Comic Factory
|
src/app/interface/panel/index.tsx
CHANGED
|
@@ -229,7 +229,7 @@ export function Panel({
|
|
| 229 |
width={width}
|
| 230 |
height={height}
|
| 231 |
alt={rendered.alt}
|
| 232 |
-
className="h-full max-w-fit"
|
| 233 |
/>}
|
| 234 |
|
| 235 |
|
|
|
|
| 229 |
width={width}
|
| 230 |
height={height}
|
| 231 |
alt={rendered.alt}
|
| 232 |
+
className="h-full max-w-fit print:w-full print:object-cover"
|
| 233 |
/>}
|
| 234 |
|
| 235 |
|
src/app/layout.tsx
CHANGED
|
@@ -5,8 +5,8 @@ import { Inter } from 'next/font/google'
|
|
| 5 |
const inter = Inter({ subsets: ['latin'] })
|
| 6 |
|
| 7 |
export const metadata: Metadata = {
|
| 8 |
-
title: 'Comic Factory: generate your own comics!',
|
| 9 |
-
description: '
|
| 10 |
}
|
| 11 |
|
| 12 |
export default function RootLayout({
|
|
|
|
| 5 |
const inter = Inter({ subsets: ['latin'] })
|
| 6 |
|
| 7 |
export const metadata: Metadata = {
|
| 8 |
+
title: 'AI Comic Factory: generate your own comics! Powered by Hugging Face π€',
|
| 9 |
+
description: 'Generate comic panels using a LLM + SDXL. Powered by Hugging Face π€',
|
| 10 |
}
|
| 11 |
|
| 12 |
export default function RootLayout({
|