Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-03 23:20:23 +00:00
2 changed files with 8 additions and 36 deletions

View File

@@ -1,48 +1,20 @@
import type { Metadata } from "next";
import { Mulish } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const mulish = Mulish({
variable: "--font-mulish", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Small Business Consulting | Calgary AB | Strategic Growth Solutions", description: "Expert business consulting for small businesses in Calgary. Strategic planning, financial analysis, and team development services to accelerate your business growth.", keywords: "small business consulting, business strategy, Calgary consulting, business planning, financial consulting", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Small Business Specialists Inc | Strategic Consulting for Small Businesses", description: "Transform your small business with expert consulting services. Strategic planning, financial optimization, and team development.", type: "website", siteName: "Small Business Specialists Inc", images: [
{
url: "http://img.b2bpic.net/free-photo/business-meeting-office_1268-21517.jpg", alt: "Small Business Specialists Inc - Strategic Consulting"},
],
},
twitter: {
card: "summary_large_image", title: "Small Business Specialists Inc | Strategic Consulting Solutions", description: "Expert business consulting for small businesses in Calgary. Let's grow your business together.", images: ["http://img.b2bpic.net/free-photo/business-meeting-office_1268-21517.jpg"],
},
};
title: "Small Business Specialists Inc", description: "Strategic consulting services for small business growth"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${mulish.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1410,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -112,7 +112,8 @@ export default function LandingPage() {
{ id: "1", value: "95%", description: "Client Satisfaction Rate" },
{ id: "2", value: "38%", description: "Average Revenue Growth" },
{ id: "3", value: "12 Months", description: "Average Time to Results" },
{ id: "4", value: "40+", description: "Years Combined Industry Experience" },
{ id: "4", value: "1000+", description: "Strategic Initiatives Completed" },
{ id: "5", value: "92%", description: "Client Retention Rate" },
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"