This commit is contained in:
hailin 2025-03-13 21:33:50 +08:00
parent ec8ce04f6c
commit 7ade0e113b
3 changed files with 3 additions and 16 deletions

View File

@ -26,7 +26,7 @@ export const runtime = 'edge' // 'nodejs' (default) | 'edge'
const inter = Inter({ subsets: ['latin'] }); const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = { export const metadata: Metadata = {
metadataBase: new URL('https://jellyai.xyz'), metadataBase: new URL('http://localhost'),
// title: { // title: {
// default: 'JellyAI', // default: 'JellyAI',
// template: `JellyAI` // template: `JellyAI`

View File

@ -111,17 +111,8 @@ export function Footer({ className, ...props }: React.ComponentProps<'p'>) {
return return
} }
// localStorage.removeItem("UserData");
// // router.refresh()
// // router.push('/')
// location.reload();
toast.success(t('footer.subscribe_success')) toast.success(t('footer.subscribe_success'))
}).catch((err) => { }).catch((err) => {
setIsLoading(false); setIsLoading(false);
console.log(err); console.log(err);
@ -183,8 +174,6 @@ export function Footer({ className, ...props }: React.ComponentProps<'p'>) {
}, []); }, []);
// const { windowWidth, windowHeight } = windowSize;
return ( return (
<Container as="footer" className="bg-secondary w-full max-w-full py-20"> <Container as="footer" className="bg-secondary w-full max-w-full py-20">
@ -201,8 +190,6 @@ export function Footer({ className, ...props }: React.ComponentProps<'p'>) {
style={{ style={{
// maxWidth: 1000 // maxWidth: 1000
}} }}
// labelCol={{ span: 8 }}
// wrapperCol={{ span: 16 }}
form={form} form={form}
size="large" size="large"
name="horizontal_login" name="horizontal_login"

View File

@ -4,11 +4,11 @@
export const baseTitle = "JellyAI" export const baseTitle = "JellyAI"
export const baseURL = "https://jellyai.xyz" export const baseURL = "http://localhost"
export const keywordsRoot = (e: string) => { export const keywordsRoot = (e: string) => {
const defKeyword = "JellyAI人工智能意图交互AI客服AI助手AI伴侣AI课程AI游戏DeFi投资质押挖矿GPU资源H100比特币以太坊区块链" const defKeyword = "JellyAI,AI,Cradle"
return `${!!e ? `${e}` : defKeyword} ` return `${!!e ? `${e}` : defKeyword} `
} }