Merge version_1 into main #1
@@ -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",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${nunito.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +80,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -100,7 +100,7 @@ export default function HomePage() {
|
||||
{ text: "Explore Features", href: "#features" },
|
||||
]}
|
||||
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=1"
|
||||
imageAlt="Modern PDF Reader Interface"
|
||||
mediaAnimation="slide-up"
|
||||
testimonials={[
|
||||
@@ -109,7 +109,7 @@ export default function HomePage() {
|
||||
handle: "@reader_sarah",
|
||||
testimonial: "Finally, a reading app that feels like reading. The AI summaries save me hours while I keep my pace. Simply brilliant.",
|
||||
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=1",
|
||||
imageAlt: "Sarah Chen",
|
||||
},
|
||||
{
|
||||
@@ -117,7 +117,7 @@ export default function HomePage() {
|
||||
handle: "@bookworm_marcus",
|
||||
testimonial: "The dark mode and customizable fonts make reading so comfortable. I've read more books in the last month than the whole year.",
|
||||
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=1",
|
||||
imageAlt: "Marcus Johnson",
|
||||
},
|
||||
{
|
||||
@@ -125,7 +125,7 @@ export default function HomePage() {
|
||||
handle: "@elena_reads",
|
||||
testimonial: "Organizing my library by reading status is genius. I finally know what I want to read next. Love the AI insights too.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B7ga6riEyo1UF2uwbMoLaWuNfy/professional-headshot-of-a-diverse-perso-1773845689121-566ac8a2.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B7ga6riEyo1UF2uwbMoLaWuNfy/professional-headshot-of-a-diverse-perso-1773845689121-566ac8a2.png?_wi=1",
|
||||
imageAlt: "Elena Rodriguez",
|
||||
},
|
||||
{
|
||||
@@ -133,7 +133,7 @@ export default function HomePage() {
|
||||
handle: "@amit_bibliophile",
|
||||
testimonial: "Multi-language support is perfect for me. Reading in English, Russian, and Kazakh feels seamless. This is my new favorite app.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B7ga6riEyo1UF2uwbMoLaWuNfy/professional-headshot-of-another-diverse-1773845687810-248da80c.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B7ga6riEyo1UF2uwbMoLaWuNfy/professional-headshot-of-another-diverse-1773845687810-248da80c.png?_wi=1",
|
||||
imageAlt: "Amit Patel",
|
||||
},
|
||||
]}
|
||||
@@ -219,7 +219,7 @@ export default function HomePage() {
|
||||
handle: "@reader_sarah",
|
||||
testimonial: "Finally, a reading app that feels natural and intelligent. The AI summaries help me understand complex chapters, and dark mode keeps my eyes comfortable during late-night reading sessions.",
|
||||
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=2",
|
||||
imageAlt: "Sarah Chen avatar",
|
||||
},
|
||||
{
|
||||
@@ -228,7 +228,7 @@ export default function HomePage() {
|
||||
handle: "@bookworm_marcus",
|
||||
testimonial: "The customizable reading experience is unmatched. I set my font, spacing, and theme once, and every book feels perfectly tailored to me. I've increased my reading by 300%.",
|
||||
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=2",
|
||||
imageAlt: "Marcus Johnson avatar",
|
||||
},
|
||||
{
|
||||
@@ -237,7 +237,7 @@ export default function HomePage() {
|
||||
handle: "@elena_reads",
|
||||
testimonial: "The library system with smart categories changed everything. I can easily see what I'm reading, what's next, and what I've loved. Organization has never been this beautiful.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B7ga6riEyo1UF2uwbMoLaWuNfy/professional-headshot-of-a-diverse-perso-1773845689121-566ac8a2.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B7ga6riEyo1UF2uwbMoLaWuNfy/professional-headshot-of-a-diverse-perso-1773845689121-566ac8a2.png?_wi=2",
|
||||
imageAlt: "Elena Rodriguez avatar",
|
||||
},
|
||||
{
|
||||
@@ -246,7 +246,7 @@ export default function HomePage() {
|
||||
handle: "@amit_bibliophile",
|
||||
testimonial: "As someone who reads in multiple languages, the seamless multi-language support is a dream come true. The UI instantly adapts, and reading flows naturally across languages.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B7ga6riEyo1UF2uwbMoLaWuNfy/professional-headshot-of-another-diverse-1773845687810-248da80c.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B7ga6riEyo1UF2uwbMoLaWuNfy/professional-headshot-of-another-diverse-1773845687810-248da80c.png?_wi=2",
|
||||
imageAlt: "Amit Patel avatar",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -95,7 +95,7 @@ export default function ReaderPage() {
|
||||
{ text: "Back to Home", href: "/" },
|
||||
]}
|
||||
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=2"
|
||||
imageAlt="PDF Reader Interface"
|
||||
mediaAnimation="slide-up"
|
||||
testimonials={[
|
||||
@@ -104,7 +104,7 @@ export default function ReaderPage() {
|
||||
handle: "@reader_sarah",
|
||||
testimonial: "The reading interface is incredibly intuitive. I went from struggling with PDF readers to loving my reading sessions.",
|
||||
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=3",
|
||||
imageAlt: "Sarah Chen",
|
||||
},
|
||||
{
|
||||
@@ -112,7 +112,7 @@ export default function ReaderPage() {
|
||||
handle: "@bookworm_marcus",
|
||||
testimonial: "Perfect reading comfort with my preferred settings. This is how reading apps should be designed.",
|
||||
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=3",
|
||||
imageAlt: "Marcus Johnson",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user