From 37bea1bcfbcc3b77f7314d7cadf7432e8b93fa08 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 04:41:42 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d607a65..18bc5ab 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Ebad | Professional Video Editor & Motion Designer", description: "Expert freelance video editing and motion graphics services. Transform your vision into stunning visual stories with 8+ years of creative excellence.", keywords: "video editor, motion designer, video editing services, motion graphics, freelance, professional video production, animation", metadataBase: new URL("https://ebadmotiondesign.com"), - alternates: { - canonical: "https://ebadmotiondesign.com"}, - openGraph: { - title: "Ebad - Motion & Video Design", description: "Professional video editing and motion design services for commercials, corporate videos, and social content.", url: "https://ebadmotiondesign.com", siteName: "Ebad Motion Design", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYZHwIIpPMQoHeLpx2HiltJyDw/a-stunning-4k-motion-design-showcase-fea-1772771620528-118ebde0.png", alt: "Ebad Motion Design Portfolio"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Ebad - Professional Video Editor & Motion Designer", description: "Stunning video editing and motion graphics. Commercials, corporate videos, and social content.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYZHwIIpPMQoHeLpx2HiltJyDw/a-stunning-4k-motion-design-showcase-fea-1772771620528-118ebde0.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Ebad | Professional Video & Motion Design", description: "Professional video editing and motion design services by Ebad. Transform your ideas into stunning visual stories with cutting-edge techniques and creative excellence."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}