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} 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} 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}