From 29572d6bf2b981c28be1a3441650a611b89145b6 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 18:06:57 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1427 +------------------------------------------- 1 file changed, 12 insertions(+), 1415 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bc218ad..9771a29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1426 +1,24 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Inter_Tight } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { GeistSans } from "geist/font/sans"; +import { GeistMono } from "geist/font/mono"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const defaultUrl = process.env.VERCEL_URL + ? `https://${process.env.VERCEL_URL}` + : "http://localhost:3000"; export const metadata: Metadata = { - title: "Professional 3D Animation & Video Editing Services", description: "Expert 3D animator and video editor bringing brands to life through stunning motion graphics, character animation, and polished post-production.", keywords: "3D animation, video editing, motion graphics, visual effects, animation services, video production", metadataBase: new URL("https://creativemotion.com"), - alternates: { - canonical: "https://creativemotion.com"}, - openGraph: { - title: "Professional 3D Animation & Video Editing", description: "Bringing brands to life through expert animation and editing services", url: "https://creativemotion.com", siteName: "Creative Motion", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AczDsvaq6hrmPRPORYh7Fl8ByI/a-stunning-3d-motion-graphics-scene-with-1772906603750-f2472594.png", alt: "3D Motion Graphics Showcase"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Professional 3D Animation & Video Editing", description: "Stunning motion graphics and post-production services", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AczDsvaq6hrmPRPORYh7Fl8ByI/a-stunning-3d-motion-graphics-scene-with-1772906603750-f2472594.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + metadataBase: new URL(defaultUrl), + title: "Creative Motion", description: "Professional 3D animation and video editing services"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -