Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| af9f8a079a | |||
| c5f1699664 | |||
| 86abd18d6b |
@@ -1,59 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Lato } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const lato = Lato({
|
|
||||||
variable: "--font-lato", subsets: ["latin"],
|
|
||||||
weight: ["100", "300", "400", "700", "900"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "AI Photo Editor - Professional Product Photography in Seconds", description: "Transform ordinary photos into stunning professional product images using advanced AI. Upload, enhance, and merge photos effortlessly with our intelligent Photo Maker tool.", keywords: "AI photo editor, product photography, photo enhancement, AI merge, professional images", metadataBase: new URL("https://www.aiphotoeditor.com"),
|
title: "AI Photo Editor", description: "Transform ordinary photos into stunning professional product images instantly"};
|
||||||
alternates: {
|
|
||||||
canonical: "https://www.aiphotoeditor.com"},
|
|
||||||
openGraph: {
|
|
||||||
title: "AI Photo Editor - Professional Product Photography", description: "Create professional product photos instantly with AI-powered enhancement and merge capabilities", url: "https://www.aiphotoeditor.com", siteName: "AI Photo Editor", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Af8k1ETXl8ulp72zC7wll1qRMp/a-sophisticated-ai-photo-editing-dashboa-1772972476914-c02a2f99.png", alt: "AI Photo Editor Interface"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "AI Photo Editor - Professional Photos Instantly", description: "Transform photos into professional product images with AI", images: [
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Af8k1ETXl8ulp72zC7wll1qRMp/a-sophisticated-ai-photo-editing-dashboa-1772972476914-c02a2f99.png"],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1421,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -185,7 +185,7 @@ export default function LandingPage() {
|
|||||||
tag="Stay Connected"
|
tag="Stay Connected"
|
||||||
tagIcon={Mail}
|
tagIcon={Mail}
|
||||||
title="Join Our Creative Community"
|
title="Join Our Creative Community"
|
||||||
description="Get exclusive tips on professional photo editing, early access to new features, and special discounts. Subscribe to our newsletter today."
|
description="Get weekly tutorials, insider tips, and exclusive discounts. Plus early access to new AI features and editing tools."
|
||||||
background={{ variant: "sparkles-gradient" }}
|
background={{ variant: "sparkles-gradient" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
inputPlaceholder="your@email.com"
|
inputPlaceholder="your@email.com"
|
||||||
|
|||||||
Reference in New Issue
Block a user