copy fixes

This commit is contained in:
zramsay 2024-12-20 19:37:27 -05:00
parent 954a47688c
commit b432d8bd3a
3 changed files with 7 additions and 10 deletions

View File

@ -5,8 +5,8 @@ import './globals.css'
const inter = Inter({ subsets: ['latin'] })
export const metadata: Metadata = {
title: 'AI Meme Generator',
description: 'Generate memes using AI and MTM tokens',
title: 'Mark\'s Meme Market',
description: 'Use MTM to generate memes',
}
export default function RootLayout({

View File

@ -77,10 +77,10 @@ const Page: React.FC = (): React.ReactElement => {
{/* Header */}
<div className="text-center mb-8">
<h1 className="text-4xl sm:text-5xl font-bold mb-4 text-transparent bg-clip-text bg-gradient-to-r from-green-400 to-emerald-600">
AI Image Generator
Mark's Meme Market
</h1>
<p className="text-gray-400 text-lg mb-8">
Generate amazing images using different Flux AI models
Use MTM to generate memes
</p>
<WalletHeader
@ -115,7 +115,7 @@ const Page: React.FC = (): React.ReactElement => {
New AI model integration in development. Stay tuned for more amazing features!
</p>
<div className="mt-2 inline-block px-3 py-1 bg-orange-500/20 rounded-full">
<span className="text-orange-300 text-sm">Future Release</span>
<span className="text-orange-300 text-sm">TBD</span>
</div>
</div>
@ -136,10 +136,7 @@ const Page: React.FC = (): React.ReactElement => {
{/* Info Section */}
<div className="mt-12 text-center text-gray-400">
<p className="text-sm">
Powered by Flux AI Different models have different costs and capabilities
</p>
<p className="text-sm mt-2">
Each generation requires MTM tokens Higher quality models cost more tokens
Powered by Mark Use at your own risk
</p>
</div>
</div>

View File

@ -24,7 +24,7 @@ const WalletHeader: React.FC<WalletHeaderProps> = ({ isConnected, publicKey, onC
<div className="flex items-center justify-between">
<span className="text-gray-400">Connected Wallet</span>
<span className="px-3 py-1 bg-green-500/20 rounded-full text-green-300 text-sm">
{publicKey?.slice(0, 8)}...
{publicKey?.slice(0, 22)}...
</span>
</div>
)}