Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-03 17:44:07 +00:00
2 changed files with 16 additions and 59 deletions

View File

@@ -1,64 +1,22 @@
import type { Metadata } from "next";
import { Montserrat, 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: "Premium 3D Product Renders | Luxury E-Commerce Photography",
description: "Ultra-realistic 3D product renders with cinematic studio lighting. Perfect for luxury e-commerce brands seeking hyper-detailed, photorealistic imagery.",
keywords: "3D product render, luxury photography, e-commerce renders, cinematic lighting, product visualization, premium renders",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Luxe Studio - Premium 3D Product Renders",
description: "Transform your products with hyper-realistic 3D renders featuring cinematic lighting and professional studio aesthetics.",
url: "https://luxe-studio.com",
siteName: "Luxe Studio",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARawWeCmXnBIZlDDpbh1gsYWj7/ultra-realistic-3d-product-render-featur-1772558351234-ce0cde87.png",
alt: "Premium 3D product render",
},
],
},
twitter: {
card: "summary_large_image",
title: "Luxe Studio - Premium 3D Product Renders",
description: "Ultra-realistic 3D renders for luxury e-commerce brands.",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARawWeCmXnBIZlDDpbh1gsYWj7/ultra-realistic-3d-product-render-featur-1772558351234-ce0cde87.png",
],
},
title: 'Luxe Studio - Premium 3D Product Renders',
description: 'Experience hyper-realistic 3D product renders with cinematic studio lighting for luxury e-commerce brands.',
};
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: `
@@ -1426,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -149,10 +149,6 @@ export default function HomePage() {
tag="Excellence"
tagIcon={Star}
features={[
{
icon: Zap,
title: "4K Resolution", description:
"Ultra-HD renders optimized for all e-commerce platforms with exceptional clarity and detail."},
{
icon: Sparkles,
title: "Photorealistic Textures", description:
@@ -173,6 +169,10 @@ export default function HomePage() {
icon: Shield,
title: "E-Commerce Ready", description:
"Clean composition with strategic white space for text placement. Perfect for homepage banners and product listings."},
{
icon: Zap,
title: "4K Resolution", description:
"Ultra-HD renders optimized for all e-commerce platforms with exceptional clarity and detail."},
]}
animationType="slide-up"
textboxLayout="default"
@@ -277,4 +277,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}