Merge version_1 into main #1
@@ -115,21 +115,21 @@ export default function AboutPage() {
|
||||
id: "innovation",
|
||||
title: "Innovation First",
|
||||
description: "We continuously push the boundaries of AI technology to deliver cutting-edge email automation solutions that stay ahead of the curve.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtoZSJUQKcXTQu5yuezg6hfKE7/abstract-illustration-of-ai-analyzing-em-1773421372922-4af0fe71.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtoZSJUQKcXTQu5yuezg6hfKE7/abstract-illustration-of-ai-analyzing-em-1773421372922-4af0fe71.png?_wi=2",
|
||||
imageAlt: "Innovation",
|
||||
},
|
||||
{
|
||||
id: "trust",
|
||||
title: "Trust & Security",
|
||||
description: "Your data privacy and security are paramount. We employ enterprise-grade encryption and comply with all major data protection regulations.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtoZSJUQKcXTQu5yuezg6hfKE7/clean-visual-showing-gmail-envelope-icon-1773421375165-bdf58237.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtoZSJUQKcXTQu5yuezg6hfKE7/clean-visual-showing-gmail-envelope-icon-1773421375165-bdf58237.png?_wi=2",
|
||||
imageAlt: "Trust",
|
||||
},
|
||||
{
|
||||
id: "customer-focus",
|
||||
title: "Customer-Centric",
|
||||
description: "We listen to our users and iterate based on feedback. Our success is measured by your productivity gains and satisfaction.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtoZSJUQKcXTQu5yuezg6hfKE7/modern-interface-showing-auto-reply-rule-1773421373607-a8434c31.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtoZSJUQKcXTQu5yuezg6hfKE7/modern-interface-showing-auto-reply-rule-1773421373607-a8434c31.png?_wi=2",
|
||||
imageAlt: "Customer Focus",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,24 +1,63 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Mulish } 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 { Mulish } 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 mulish = Mulish({
|
||||
variable: "--font-mulish",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "ReplyAI - AI Email Agent for Automated Gmail Replies",
|
||||
description: "ReplyAI connects to your Gmail and uses AI to automatically generate and send intelligent email replies. Save time with automated email management.",
|
||||
keywords: "AI email automation, Gmail automation, email reply generator, business email automation, AI assistant",
|
||||
metadataBase: new URL("https://replyai.com"),
|
||||
alternates: {
|
||||
canonical: "https://replyai.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "ReplyAI - AI Email Agent",
|
||||
description: "Automate your email management with intelligent AI-powered replies.",
|
||||
url: "https://replyai.com",
|
||||
siteName: "ReplyAI",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtoZSJUQKcXTQu5yuezg6hfKE7/modern-clean-saas-dashboard-interface-sh-1773421374307-be1cdcbf.png",
|
||||
alt: "ReplyAI Dashboard",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "ReplyAI - AI Email Agent",
|
||||
description: "Automate your email management with intelligent AI-powered replies.",
|
||||
images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtoZSJUQKcXTQu5yuezg6hfKE7/modern-clean-saas-dashboard-interface-sh-1773421374307-be1cdcbf.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={`${mulish.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +80,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -143,21 +143,21 @@ export default function HomePage() {
|
||||
id: "ai-analysis",
|
||||
title: "AI Email Analysis",
|
||||
description: "Advanced AI reads and understands email context, sentiment, and intent to generate appropriate responses.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtoZSJUQKcXTQu5yuezg6hfKE7/abstract-illustration-of-ai-analyzing-em-1773421372922-4af0fe71.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtoZSJUQKcXTQu5yuezg6hfKE7/abstract-illustration-of-ai-analyzing-em-1773421372922-4af0fe71.png?_wi=1",
|
||||
imageAlt: "AI Email Analysis",
|
||||
},
|
||||
{
|
||||
id: "gmail-integration",
|
||||
title: "Seamless Gmail Integration",
|
||||
description: "Connect directly to your Gmail account with secure OAuth authentication. Read, analyze, and send emails automatically.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtoZSJUQKcXTQu5yuezg6hfKE7/clean-visual-showing-gmail-envelope-icon-1773421375165-bdf58237.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtoZSJUQKcXTQu5yuezg6hfKE7/clean-visual-showing-gmail-envelope-icon-1773421375165-bdf58237.png?_wi=1",
|
||||
imageAlt: "Gmail Integration",
|
||||
},
|
||||
{
|
||||
id: "auto-reply",
|
||||
title: "Smart Auto-Reply System",
|
||||
description: "Set intelligent rules to automatically reply to emails based on keywords, senders, or custom triggers.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtoZSJUQKcXTQu5yuezg6hfKE7/modern-interface-showing-auto-reply-rule-1773421373607-a8434c31.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtoZSJUQKcXTQu5yuezg6hfKE7/modern-interface-showing-auto-reply-rule-1773421373607-a8434c31.png?_wi=1",
|
||||
imageAlt: "Auto Reply Configuration",
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user