diff --git a/apps/hasura/.trigger-build b/apps/hasura/.trigger-build new file mode 100644 index 00000000..e69de29b diff --git a/apps/masterbots.ai/app/layout.tsx b/apps/masterbots.ai/app/layout.tsx index 15ab75c8..67bfc840 100644 --- a/apps/masterbots.ai/app/layout.tsx +++ b/apps/masterbots.ai/app/layout.tsx @@ -6,6 +6,7 @@ import '@/app/globals.css' import { Header } from '@/components/header' import { Providers } from '@/components/providers' import { cn } from '@/lib/utils' +import { Metadata } from 'next' export default function RootLayout({ children }: RootLayoutProps) { return ( @@ -37,16 +38,44 @@ export default function RootLayout({ children }: RootLayoutProps) { ) } -export const metadata = { +export const metadata: Metadata = { metadataBase: new URL(`https://${process.env.VERCEL_URL}`), title: { default: 'Masterbots', template: `%s - Masterbots` }, - description: 'Specialized AI chatbots', + description: 'Elevating AI Beyond ChatGPT: Specialized Chatbots, Social Sharing and User-Friendly Innovation', + openGraph: { + type: 'website', + locale: 'en_US', + url: 'https://masterbots.ai', + siteName: 'Masterbots', + images: [ + { + url: 'https://masterbots.ai/images/masterbots.png', + width: 1232, + height: 928, + alt: 'Masterbots' + } + ] + }, + twitter: { + title: 'Masterbots', + description: 'Elevating AI Beyond ChatGPT: Specialized Chatbots, Social Sharing and User-Friendly Innovation', + site: '@masterbotsai', + card: 'summary_large_image', + images: [ + { + url: 'https://masterbots.ai/images/masterbots.png', + width: 1232, + height: 928, + alt: 'Masterbots' + } + ] + }, icons: { icon: '/favicon.ico', - shortcut: '/favicon-16x16.png', + shortcut: '/favicon-300x300.png', apple: '/apple-touch-icon.png' } } diff --git a/apps/masterbots.ai/app/terms-n-policies/layout.tsx b/apps/masterbots.ai/app/terms/layout.tsx similarity index 100% rename from apps/masterbots.ai/app/terms-n-policies/layout.tsx rename to apps/masterbots.ai/app/terms/layout.tsx diff --git a/apps/masterbots.ai/app/terms-n-policies/page.tsx b/apps/masterbots.ai/app/terms/page.tsx similarity index 100% rename from apps/masterbots.ai/app/terms-n-policies/page.tsx rename to apps/masterbots.ai/app/terms/page.tsx diff --git a/apps/masterbots.ai/middleware.ts b/apps/masterbots.ai/middleware.ts index 61473699..a82dde45 100644 --- a/apps/masterbots.ai/middleware.ts +++ b/apps/masterbots.ai/middleware.ts @@ -2,6 +2,6 @@ export { auth as middleware } from './auth' export const config = { matcher: [ - '/((?!api|browse|b|u|terms-n-policies|images|_next/static|_next/image|favicon.ico).*)' + '/((?!api|browse|b|u|terms|images|_next/static|_next/image|favicon.ico).*)' ] } diff --git a/apps/masterbots.ai/public/apple-touch-icon.png b/apps/masterbots.ai/public/apple-touch-icon.png index 0eb831fd..4e8cecce 100644 Binary files a/apps/masterbots.ai/public/apple-touch-icon.png and b/apps/masterbots.ai/public/apple-touch-icon.png differ diff --git a/apps/masterbots.ai/public/favicon-16x16.png b/apps/masterbots.ai/public/favicon-16x16.png deleted file mode 100644 index 620c7d81..00000000 Binary files a/apps/masterbots.ai/public/favicon-16x16.png and /dev/null differ diff --git a/apps/masterbots.ai/public/favicon-300x300.png b/apps/masterbots.ai/public/favicon-300x300.png new file mode 100644 index 00000000..4e8cecce Binary files /dev/null and b/apps/masterbots.ai/public/favicon-300x300.png differ diff --git a/apps/masterbots.ai/public/favicon.ico b/apps/masterbots.ai/public/favicon.ico index 7452b5dc..09719922 100644 Binary files a/apps/masterbots.ai/public/favicon.ico and b/apps/masterbots.ai/public/favicon.ico differ diff --git a/apps/masterbots.ai/public/images/masterbots.png b/apps/masterbots.ai/public/images/masterbots.png new file mode 100644 index 00000000..98152a8c Binary files /dev/null and b/apps/masterbots.ai/public/images/masterbots.png differ