Merge version_2 into main #4
@@ -1,48 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Montserrat, Inter } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "EditAI - Professional AI Photo Editing | ₹100/Month", description: "Transform your photos with EditAI's powerful AI editing tools. Professional-grade results in seconds. Unlimited editing, batch processing, and cloud storage. Try free for 7 days.", keywords: "AI photo editor, batch image processing, professional editing software, affordable image enhancer, cloud-based editing, content creator tools", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "EditAI - Professional AI Photo Editing", description: "Transform your photos with AI-powered editing. ₹100/month for unlimited professional-grade results.", type: "website", siteName: "EditAI", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcI19VdLZqhzMSujvnHwZEYucy/a-sleek-modern-ai-editing-dashboard-inte-1772885491274-e6d7d232.png", alt: "EditAI Dashboard"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "EditAI - Professional AI Photo Editing", description: "Transform photos with AI. ₹100/month. Unlimited editing, batch processing, cloud storage.", images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcI19VdLZqhzMSujvnHwZEYucy/a-sleek-modern-ai-editing-dashboard-inte-1772885491274-e6d7d232.png"],
|
||||
},
|
||||
};
|
||||
title: "EditAI - Professional AI Editing, Made Affordable", description: "Transform your images with AI-powered editing tools. Professional-grade results in seconds. ₹100/month for unlimited possibilities."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1410,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -161,6 +161,7 @@ export default function LandingPage() {
|
||||
{ text: "View Full Features", href: "#features" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
cardClassName="data-[plan=enterprise-plan]:border-2 data-[plan=enterprise-plan]:border-primary-cta data-[plan=enterprise-plan]:shadow-lg data-[plan=enterprise-plan]:shadow-primary-cta/20"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -212,7 +213,7 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "5", title: "What file formats are supported?", content: "We support all major image formats including JPG, PNG, WEBP, TIFF, BMP, and RAW files from professional cameras. You can export your edited images in any of these formats, optimized for different use cases."},
|
||||
{
|
||||
id: "6", title: "Is my data secure and private?", content: "Absolutely. All images are encrypted during upload and processing. We use enterprise-grade security protocols and never share your images with third parties. Images are automatically deleted after processing unless you choose to save them."}
|
||||
id: "6", title: "Is my data secure and private?", content: "Absolutely. All images are encrypted during upload and processing. We use enterprise-grade security protocols and never share your images with third parties. Images are automatically deleted after processing unless you choose to save them."},
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
textPosition="left"
|
||||
|
||||
Reference in New Issue
Block a user