From 7315300f8642d0d38621a95a3d6d00524aef3e66 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 09:12:12 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 47fd71f..427b492 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -111,7 +111,7 @@ export default function AboutPage() { tag: "Operations", avatarSrc: "http://img.b2bpic.net/free-photo/young-woman-sitting-library_273609-15843.jpg", avatarAlt: "Sarah Mitchell", - imageSrc: "http://img.b2bpic.net/free-photo/secretary-with-mobile-digital-tablet_1098-2167.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/secretary-with-mobile-digital-tablet_1098-2167.jpg?_wi=2", imageAlt: "Sarah Mitchell speaking about business success" }, { @@ -123,7 +123,7 @@ export default function AboutPage() { tag: "Growth", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-bearded-man-art-studio_23-2149705893.jpg", avatarAlt: "James Chen", - imageSrc: "http://img.b2bpic.net/free-photo/employee-office-leaving-desk-present-revenue-figures-tablet_482257-126652.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/employee-office-leaving-desk-present-revenue-figures-tablet_482257-126652.jpg?_wi=2", imageAlt: "James Chen discussing company expansion" }, { @@ -135,7 +135,7 @@ export default function AboutPage() { tag: "Marketing", avatarSrc: "http://img.b2bpic.net/free-photo/joyful-woman-black-jacket-liking-lip-posing-isolated-background-charming-lady-dark-suit-smiling-white-backdrop_197531-18516.jpg", avatarAlt: "Emma Thompson", - imageSrc: "http://img.b2bpic.net/free-photo/low-angle-view-happy-colleagues-celebrating-business-success-having-fun-office_637285-185.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/low-angle-view-happy-colleagues-celebrating-business-success-having-fun-office_637285-185.jpg?_wi=2", imageAlt: "Emma Thompson discussing marketing success" } ]} -- 2.49.1 From f028ba1e37a877af2a188ce2f8991a4177f801b3 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 09:12:13 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++++++++++++++++++++++++++++++--------- 1 file changed, 44 insertions(+), 10 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index edb6b42..45e325b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Montserrat, Inter } 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 { Montserrat } from "next/font/google"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Business Consulting Newcastle | Small Business Support Centre", + description: "Expert business consulting for SMEs in Newcastle. Strategy, finance, operations & growth consulting to help your business succeed.", + keywords: "business consultant Newcastle, small business help NSW, business consulting, management consulting, SME consulting, Newcastle NSW", + metadataBase: new URL("https://smallbusinesssupportcentre.com.au"), + alternates: { + canonical: "https://smallbusinesssupportcentre.com.au", + }, + openGraph: { + title: "Small Business Support Centre - Newcastle Business Consulting", + description: "Help your business grow with expert consulting services in Newcastle, NSW.", + url: "https://smallbusinesssupportcentre.com.au", + siteName: "Small Business Support Centre", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/proud-businesswoman-showing-her-report_1139-218.jpg", + alt: "Professional business consulting team", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Small Business Support Centre - Newcastle Business Consulting", + description: "Expert consulting services to help your business grow and succeed.", + images: ["http://img.b2bpic.net/free-photo/proud-businesswoman-showing-her-report_1139-218.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +63,9 @@ export default function RootLayout({ return ( - + {children}