From 5be431a3f1a857673ab1c972c73bd974a24c100b Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 17:44:00 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 65 ++++++++-------------------------------------- 1 file changed, 11 insertions(+), 54 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 409d955..0fc8d36 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}