diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bcdc0d3..eb6958d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}