diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index f7bd8e8..f41109f 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,55 +1,21 @@
import type { Metadata } from "next";
-import { Public_Sans } from "next/font/google";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-
-const publicSans = Public_Sans({
- variable: "--font-public-sans", subsets: ["latin"],
-});
-
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+import "./styles/variables.css";
+import "./styles/base.css";
export const metadata: Metadata = {
- title: "Graphic Design & Signage in Krugersdorp | Hamz IT Solutions", description: "Professional graphic design, signage, printing, and website services in Krugersdorp. Affordable, fast turnaround. 5-star rated. Call 062 978 8159 today.", keywords: "graphic designer Krugersdorp, signage Krugersdorp, website design Krugersdorp, printing services Krugersdorp, business branding Krugersdorp", openGraph: {
- title: "Graphic Design & Signage in Krugersdorp", description: "Your One-Stop Branding & Signage Partner. Trusted by 47+ businesses. Professional, affordable, fast service.", siteName: "Hamz IT Solutions", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/high-angle-woman-working-as-interior-designer_23-2150346499.jpg", alt: "Hamz IT Solutions - Professional Graphic Design Services"
- }
- ]
- },
- twitter: {
- card: "summary_large_image", title: "Graphic Design & Signage in Krugersdorp", description: "Professional design solutions from Hamz IT Solutions. 5-star rated, fast turnaround.", images: ["http://img.b2bpic.net/free-photo/high-angle-woman-working-as-interior-designer_23-2150346499.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Hamz IT Solutions | Graphic Design & Signage in Krugersdorp", description: "Professional graphic design, signage, printing, and web solutions in Krugersdorp. Trusted by 47+ local businesses with 5.0★ rating."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-