Merge version_1 into main #1
@@ -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"
|
||||
}
|
||||
]}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +77,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -141,7 +141,7 @@ export default function HomePage() {
|
||||
title: "Business Strategy & Planning",
|
||||
description: "Develop comprehensive strategic plans to guide your business toward sustainable growth and competitive advantage.",
|
||||
tag: "Strategy",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-senior-businessman-with-his-colleague-meeting_23-2147923434.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-senior-businessman-with-his-colleague-meeting_23-2147923434.jpg?_wi=1",
|
||||
imageAlt: "Business strategy and planning consultation"
|
||||
},
|
||||
{
|
||||
@@ -149,7 +149,7 @@ export default function HomePage() {
|
||||
title: "Financial Management Guidance",
|
||||
description: "Optimize your financial performance with expert advice on budgeting, cash flow management, and profitability.",
|
||||
tag: "Finance",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-business-concept_53876-14500.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-business-concept_53876-14500.jpg?_wi=1",
|
||||
imageAlt: "Financial management and analysis"
|
||||
},
|
||||
{
|
||||
@@ -157,7 +157,7 @@ export default function HomePage() {
|
||||
title: "Operations Improvement",
|
||||
description: "Streamline your operations, reduce costs, and improve efficiency through process optimization and best practices.",
|
||||
tag: "Operations",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-person-conference-room_23-2149085913.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-person-conference-room_23-2149085913.jpg?_wi=1",
|
||||
imageAlt: "Operations improvement and process optimization"
|
||||
},
|
||||
{
|
||||
@@ -165,7 +165,7 @@ export default function HomePage() {
|
||||
title: "Marketing Strategy Support",
|
||||
description: "Develop targeted marketing strategies to reach your audience, increase brand awareness, and drive customer acquisition.",
|
||||
tag: "Marketing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-strategy-written-note-with-stickers-notepad-colored-background-copybook-color-salary-job-office-business-college-school_179666-18288.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-strategy-written-note-with-stickers-notepad-colored-background-copybook-color-salary-job-office-business-college-school_179666-18288.jpg?_wi=1",
|
||||
imageAlt: "Marketing strategy and brand development"
|
||||
},
|
||||
{
|
||||
@@ -173,7 +173,7 @@ export default function HomePage() {
|
||||
title: "Startup & Growth Consulting",
|
||||
description: "Launch your business successfully or scale your existing operations with expert guidance and proven frameworks.",
|
||||
tag: "Growth",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/landing-page-with-rocket_23-2148156874.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/landing-page-with-rocket_23-2148156874.jpg?_wi=1",
|
||||
imageAlt: "Startup and business growth consulting"
|
||||
}
|
||||
]}
|
||||
@@ -198,7 +198,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "Sarah Mitchell speaking about business success"
|
||||
},
|
||||
{
|
||||
@@ -210,7 +210,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "James Chen discussing company expansion"
|
||||
},
|
||||
{
|
||||
@@ -222,7 +222,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "Emma Thompson discussing marketing success"
|
||||
},
|
||||
{
|
||||
|
||||
@@ -91,7 +91,7 @@ export default function ServicesPage() {
|
||||
title: "Business Strategy & Planning",
|
||||
description: "Develop comprehensive strategic plans to guide your business toward sustainable growth and competitive advantage.",
|
||||
tag: "Strategy",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-senior-businessman-with-his-colleague-meeting_23-2147923434.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-senior-businessman-with-his-colleague-meeting_23-2147923434.jpg?_wi=2",
|
||||
imageAlt: "Business strategy planning consultation meeting",
|
||||
},
|
||||
{
|
||||
@@ -99,7 +99,7 @@ export default function ServicesPage() {
|
||||
title: "Financial Management Guidance",
|
||||
description: "Optimize your financial performance with expert advice on budgeting, cash flow management, and profitability.",
|
||||
tag: "Finance",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-business-concept_53876-14500.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-business-concept_53876-14500.jpg?_wi=2",
|
||||
imageAlt: "financial management accounting business",
|
||||
},
|
||||
{
|
||||
@@ -107,7 +107,7 @@ export default function ServicesPage() {
|
||||
title: "Operations Improvement",
|
||||
description: "Streamline your operations, reduce costs, and improve efficiency through process optimization and best practices.",
|
||||
tag: "Operations",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-person-conference-room_23-2149085913.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-person-conference-room_23-2149085913.jpg?_wi=2",
|
||||
imageAlt: "business operations workflow process",
|
||||
},
|
||||
{
|
||||
@@ -115,7 +115,7 @@ export default function ServicesPage() {
|
||||
title: "Marketing Strategy Support",
|
||||
description: "Develop targeted marketing strategies to reach your audience, increase brand awareness, and drive customer acquisition.",
|
||||
tag: "Marketing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-strategy-written-note-with-stickers-notepad-colored-background-copybook-color-salary-job-office-business-college-school_179666-18288.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-strategy-written-note-with-stickers-notepad-colored-background-copybook-color-salary-job-office-business-college-school_179666-18288.jpg?_wi=2",
|
||||
imageAlt: "marketing strategy business development",
|
||||
},
|
||||
{
|
||||
@@ -123,7 +123,7 @@ export default function ServicesPage() {
|
||||
title: "Startup & Growth Consulting",
|
||||
description: "Launch your business successfully or scale your existing operations with expert guidance and proven frameworks.",
|
||||
tag: "Growth",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/landing-page-with-rocket_23-2148156874.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/landing-page-with-rocket_23-2148156874.jpg?_wi=2",
|
||||
imageAlt: "startup business growth launching",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user