8 Commits

Author SHA1 Message Date
6a6a5fc369 Update src/app/page.tsx 2026-03-07 12:18:40 +00:00
a84c8399e6 Update src/app/layout.tsx 2026-03-07 12:18:39 +00:00
626e4df5c6 Merge version_2 into main
Merge version_2 into main
2026-03-07 12:16:14 +00:00
cc75b53bf3 Update src/app/page.tsx 2026-03-07 12:16:09 +00:00
f5f11c2349 Update src/app/layout.tsx 2026-03-07 12:16:09 +00:00
03198b8e7c Merge version_1 into main
Merge version_1 into main
2026-03-07 12:14:55 +00:00
1baf4c2955 Merge version_1 into main
Merge version_1 into main
2026-03-07 12:13:54 +00:00
f5fbca4ca7 Merge version_1 into main
Merge version_1 into main
2026-03-07 12:12:22 +00:00
2 changed files with 13 additions and 41 deletions

View File

@@ -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>
);
}
}

View File

@@ -144,7 +144,7 @@ export default function LandingPage() {
plans={[
{
id: "monthly-plan", tag: "Most Popular", tagIcon: Crown,
price: "₹100", period: "/month", description: "Everything you need for professional AI-powered photo editing and batch processing.", button: { text: "Start Free Trial", href: "#contact" },
price: "₹100", period: "/month", description: "Everything you need for professional AI-powered photo editing and batch processing.", button: { text: "Start 7-Day Free Trial", href: "#contact" },
featuresTitle: "What's Included:", features: [
"Unlimited image editing", "Batch processing up to 1000 images/month", "All AI enhancement tools", "Cloud storage (50GB)", "Priority support", "Export in any format", "Cross-platform access", "Weekly filter updates"],
},
@@ -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"
@@ -226,7 +227,7 @@ export default function LandingPage() {
text="Ready to transform your photo editing? Join thousands of creators using EditAI. Start your free trial today and experience the power of AI-assisted editing."
animationType="entrance-slide"
buttons={[
{ text: "Start Free Trial", href: "#pricing" },
{ text: "Start 7-Day Free Trial", href: "#pricing" },
{ text: "Contact Support", href: "mailto:support@editai.com" },
]}
background={{ variant: "plain" }}
@@ -278,4 +279,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}