From 36944bee77abd178c9338f55fcc2b1da4505c2a3 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 21:14:12 +0000 Subject: [PATCH 1/5] 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 b36b723..f21f3c7 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -51,7 +51,7 @@ export default function AboutPage() { description="With years of experience in event decoration, NG Events specializes in creating stunning, personalized experiences for every occasion." subdescription="We believe every event deserves to be special. Our team combines creativity, attention to detail, and passion to transform venues into magical spaces that reflect your unique vision and celebrate your most important moments." icon={Heart} - imageSrc="http://img.b2bpic.net/free-photo/view-woman-decorating-her-home-with-orchid-flower_23-2151074447.jpg" + imageSrc="http://img.b2bpic.net/free-photo/view-woman-decorating-her-home-with-orchid-flower_23-2151074447.jpg?_wi=2" imageAlt="Event decoration professional at work" mediaAnimation="slide-up" useInvertedBackground={true} -- 2.49.1 From fec33038222528858929e22545f1693bffcea93a Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 21:14:12 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index a665be6..5ab29a8 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -51,7 +51,7 @@ export default function ContactPage() { description="Ready to transform your celebration into an unforgettable experience? Our team is here to help you create the perfect event decoration." subdescription="Contact us today to discuss your vision, explore our services, and receive a personalized quote. We're excited to bring your event dreams to life with elegant, creative, and professional decoration services." icon={Heart} - imageSrc="http://img.b2bpic.net/free-photo/view-woman-decorating-her-home-with-orchid-flower_23-2151074447.jpg" + imageSrc="http://img.b2bpic.net/free-photo/view-woman-decorating-her-home-with-orchid-flower_23-2151074447.jpg?_wi=3" imageAlt="Event decoration professional ready to assist" mediaAnimation="slide-up" useInvertedBackground={true} -- 2.49.1 From 23677e3ea5528cfdd253d51814f3b32b969849b7 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 21:14:12 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 46 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0a803b2..431c7f2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,60 @@ 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"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Mulish } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "NG Events - Professional Event Decoration Services", + description: "Transform your celebration with NG Events. Expert event decoration for weddings, corporate events, and private parties. Book your consultation today.", + keywords: "event decoration, wedding decoration, party decoration, event planning, decoration services, celebration design", + metadataBase: new URL("https://ngevents.com"), + alternates: { + canonical: "https://ngevents.com", + }, + openGraph: { + title: "NG Events - Professional Event Decoration", + description: "Create unforgettable celebrations with our expert event decoration services.", + siteName: "NG Events", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/litle-candles-burn-golden-shots-which-stand-around_8353-779.jpg", + alt: "NG Events event decoration portfolio", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "NG Events - Event Decoration Services", + description: "Professional event decoration for all occasions", + images: ["http://img.b2bpic.net/free-photo/litle-candles-burn-golden-shots-which-stand-around_8353-779.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +63,9 @@ export default function RootLayout({ return ( - + {children}