diff --git a/src/app/globals.css b/src/app/globals.css
index f624db2..288fc5c 100644
--- a/src/app/globals.css
+++ b/src/app/globals.css
@@ -1,5 +1,14 @@
-@import "tailwindcss";
-@import "./styles/variables.css";
-@import "./styles/theme.css";
-@import "./styles/utilities.css";
-@import "./styles/base.css";
+@layer base {
+ * {
+ @apply border-border;
+ }
+ body {
+ @apply bg-background text-foreground;
+ font-feature-settings: "rlig" 1, "calt" 1;
+ }
+}
+@layer utilities {
+ .text-balance {
+ text-wrap: balance;
+ }
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 31de534..da99175 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,55 +1,21 @@
import type { Metadata } from "next";
-import { Poppins } from "next/font/google";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
+import "./styles/variables.css";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const poppins = Poppins({
- variable: "--font-poppins", subsets: ["latin"],
- weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
-});
-
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Professional Services in Midrand | Local Business", description: "Professional services in Midrand at China Town Mall. Call 078 980 4771. Same-day service, transparent pricing, trusted by local customers.", keywords: "Midrand services, China Town Mall, Old Pretoria Rd, local business, professional service, Midrand expert", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Professional Services in Midrand | Local Business", description: "Trusted local service provider in Midrand. Call 078 980 4771 for professional solutions.", type: "website", siteName: "Local Business", images: [
- {
- url: "http://img.b2bpic.net/free-photo/exterior-modern-buildings_1112-1993.jpg", alt: "Professional storefront in China Town Mall, Midrand"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Professional Services in Midrand", description: "Trusted local service provider. Call 078 980 4771", images: ["http://img.b2bpic.net/free-photo/exterior-modern-buildings_1112-1993.jpg"],
- },
-};
+ title: "Nation Barber Shop | Premium Barbering Services in Midrand", description: "Professional barbering services at Nation Barber Shop in Midrand. Expert haircuts, grooming, and styling by skilled barbers. Located in China Town Mall, Old Pretoria Rd."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-