Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f4b04f7bc0 | |||
| 026e3ba0fc | |||
| f509a4b68c | |||
| 9303e4ef3c | |||
| 6f4b07dca8 |
@@ -1,53 +1,22 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from 'next';
|
||||||
import { Montserrat } from "next/font/google";
|
import { Inter } from 'next/font/google';
|
||||||
import { Inter } from "next/font/google";
|
import './globals.css';
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
const inter = Inter({ subsets: ['latin'] });
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Professional Image Clipping & Editing Services | ClipStudio", description: "Expert product photo clipping, background removal, and image editing for e-commerce. Fast, precise, and affordable. Trusted by 500+ global brands.", keywords: "image clipping, background removal, photo editing, product photography, ecommerce editing, image retouching", metadataBase: new URL("https://clipstudio.com"),
|
title: 'ClipStudio - Professional Image Clipping & Editing',
|
||||||
alternates: {
|
description: 'Expert image clipping, background removal, and photo editing services for e-commerce success.',
|
||||||
canonical: "https://clipstudio.com"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Professional Image Clipping & Editing Services", description: "Transform your product images with expert clipping and editing services. Fast turnaround, competitive pricing.", url: "https://clipstudio.com", siteName: "ClipStudio", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/special-product-photography-studio_23-2148970212.jpg", alt: "Professional image clipping service"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Professional Image Clipping & Editing | ClipStudio", description: "Expert product photo editing for e-commerce businesses worldwide.", images: ["http://img.b2bpic.net/free-photo/special-product-photography-studio_23-2148970212.jpg"]
|
|
||||||
},
|
|
||||||
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={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1415,7 +1384,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -45,14 +45,14 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroCentered
|
<HeroCentered
|
||||||
title="Professional Image Clipping & Editing Services"
|
title="Professional Image Clipping & Editing Services"
|
||||||
description="Elevate your product visuals with precision clipping, background removal, and professional photo editing tailored for e-commerce success."
|
description="60% faster editing, 100% accuracy on every project. Precision clipping, background removal, and advanced color correction designed to maximize your product appeal and conversion rates."
|
||||||
background={{ variant: "downward-rays-static" }}
|
background={{ variant: "downward-rays-static" }}
|
||||||
avatars={[
|
avatars={[
|
||||||
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Client 1" },
|
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Client 1" },
|
||||||
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Client 2" },
|
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Client 2" },
|
||||||
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Client 3" }
|
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Client 3" }
|
||||||
]}
|
]}
|
||||||
avatarText="Trusted by 500+ global brands"
|
avatarText="Trusted by 500+ brands processing 50K+ images monthly"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Request Quote", href: "contact" },
|
{ text: "Request Quote", href: "contact" },
|
||||||
{ text: "View Portfolio", href: "product" }
|
{ text: "View Portfolio", href: "product" }
|
||||||
|
|||||||
Reference in New Issue
Block a user