diff --git a/src/app/account/page.tsx b/src/app/account/page.tsx index d0df161..ab56c13 100644 --- a/src/app/account/page.tsx +++ b/src/app/account/page.tsx @@ -77,7 +77,7 @@ export default function AccountPage() { }, ]} buttonAnimation="entrance-slide" - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B7ga6riEyo1UF2uwbMoLaWuNfy/a-modern-clean-pdf-book-reader-interface-1773845687798-565f43cf.png" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B7ga6riEyo1UF2uwbMoLaWuNfy/a-modern-clean-pdf-book-reader-interface-1773845687798-565f43cf.png?_wi=3" imageAlt="Account Dashboard Interface" mediaAnimation="slide-up" useInvertedBackground={false} @@ -87,7 +87,7 @@ export default function AccountPage() { handle: "@reader_sarah", testimonial: "The account dashboard keeps everything organized. I can track my reading goals easily.", rating: 5, - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B7ga6riEyo1UF2uwbMoLaWuNfy/professional-headshot-of-a-diverse-profe-1773845687703-d628e292.png", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B7ga6riEyo1UF2uwbMoLaWuNfy/professional-headshot-of-a-diverse-profe-1773845687703-d628e292.png?_wi=4", imageAlt: "Sarah Chen", }, { @@ -95,7 +95,7 @@ export default function AccountPage() { handle: "@bookworm_marcus", testimonial: "Syncing across devices is seamless. My account settings follow me everywhere.", rating: 5, - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B7ga6riEyo1UF2uwbMoLaWuNfy/professional-headshot-of-another-diverse-1773845687974-14ae4d16.png", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B7ga6riEyo1UF2uwbMoLaWuNfy/professional-headshot-of-another-diverse-1773845687974-14ae4d16.png?_wi=4", imageAlt: "Marcus Johnson", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5aaf8c4..a4d2d30 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,63 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Nunito } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const nunito = Nunito({ variable: "--font-nunito", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "ReadAI - Intelligent PDF Book Reader", + description: "Experience the future of reading with ReadAI. AI-powered PDF book reader with comfortable reading modes, smart summaries, and multi-language support. Read smarter, read better.", + keywords: "PDF reader, ebook reader, AI summaries, book reader app, intelligent reading", + metadataBase: new URL("https://readai.com"), + alternates: { + canonical: "https://readai.com", + }, + openGraph: { + title: "ReadAI - Intelligent PDF Book Reader", + description: "Transform your reading with AI-powered summaries, comfortable reading modes, and an organized library. The smartest way to read PDFs.", + url: "https://readai.com", + siteName: "ReadAI", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B7ga6riEyo1UF2uwbMoLaWuNfy/a-modern-clean-pdf-book-reader-interface-1773845687798-565f43cf.png", + alt: "ReadAI PDF Reader Interface", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "ReadAI - Intelligent PDF Book Reader", + description: "The future of reading is here. AI-powered summaries, custom reading modes, and perfect PDF preservation.", + images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B7ga6riEyo1UF2uwbMoLaWuNfy/a-modern-clean-pdf-book-reader-interface-1773845687798-565f43cf.png", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}