Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f4b04f7bc0 | |||
| 026e3ba0fc | |||
| f509a4b68c | |||
| 9303e4ef3c | |||
| 6f4b07dca8 |
@@ -1,53 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import type { Metadata } from 'next';
|
||||
import { Inter } from 'next/font/google';
|
||||
import './globals.css';
|
||||
|
||||
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: "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"),
|
||||
alternates: {
|
||||
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
|
||||
}
|
||||
title: 'ClipStudio - Professional Image Clipping & Editing',
|
||||
description: 'Expert image clipping, background removal, and photo editing services for e-commerce success.',
|
||||
};
|
||||
|
||||
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: `
|
||||
@@ -1415,7 +1384,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -45,14 +45,14 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
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" }}
|
||||
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 2" },
|
||||
{ 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={[
|
||||
{ text: "Request Quote", href: "contact" },
|
||||
{ text: "View Portfolio", href: "product" }
|
||||
|
||||
Reference in New Issue
Block a user