From c24c6563c4f8be5d18e274e141abe8fd3b09fe02 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 18:03:34 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 3f562d5..a01714a 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -51,7 +51,7 @@ export default function AboutPage() { borderRadius="pill" contentWidth="compact" sizing="largeSmallSizeLargeTitles" - background="noise" + background="circleGradient" cardStyle="layered-gradient" primaryButtonStyle="primary-glow" secondaryButtonStyle="radial-glow" -- 2.49.1 From 10609e0717dcc66047fbaa12122c46a6e844804a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 18:03:35 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 1439 +------------------------------------------- 1 file changed, 6 insertions(+), 1433 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3c49239..90c956b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1443 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Mulish } 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 mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "Suhag Visuals | Professional Video Editing for YouTube, Reels & More", - description: "Expert video editing services for YouTube, Instagram Reels, TikTok, motion graphics, podcasts & color grading. Affordable, fast turnaround, unlimited revisions.", - keywords: "video editing, youtube editing, social media editing, motion graphics, podcast editing, color grading, professional video production, bangladesh video editor", - metadataBase: new URL("https://suhagvisuals.com"), - alternates: { - canonical: "https://suhagvisuals.com", - }, - openGraph: { - title: "Suhag Visuals - Professional Video Editing Services", - description: "Transform your raw footage into engaging, professional video content. YouTube, Reels, TikTok, motion graphics & more.", - url: "https://suhagvisuals.com", - siteName: "Suhag Visuals", - images: [ - { - url: "http://img.b2bpic.net/free-photo/female-video-creator-working-editing-movie-with-green-screen_482257-120096.jpg", - alt: "Suhag Visuals - Professional Video Editing", - }, - ], - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Suhag Visuals - Professional Video Editing", - description: "Expert video editing for YouTube, Instagram, TikTok & corporate videos.", - images: [ - "http://img.b2bpic.net/free-photo/female-video-creator-working-editing-movie-with-green-screen_482257-120096.jpg", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Suhag Visuals | Professional Video Editing Services", description: "Expert video editing for YouTube, Instagram Reels, TikTok, and corporate videos. Transform your raw footage into professional content that drives engagement and growth.", keywords: "video editing, YouTube editing, social media shorts, motion graphics, podcast editing, color grading"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -