diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 524d23e..f39557a 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,54 +1,19 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Manrope } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const manrope = Manrope({
- variable: "--font-manrope", subsets: ["latin"],
-});
export const metadata: Metadata = {
- title: "Local Business Services | Trusted Community Partner", description: "Professional, reliable local services with expert team and proven track record. Serving community with integrity, excellence, and exceptional customer care.", keywords: "local business services, professional expertise, community service, customer satisfaction", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Local Business Services | Trusted Community Partner", description: "Professional, reliable local services with expert team and proven track record.", type: "website", siteName: "Local Business", images: [
- {
- url: "http://img.b2bpic.net/free-photo/business-people-having-discussion-meeting_1153-3936.jpg", alt: "Professional local business team"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Local Business Services | Trusted Community Partner", description: "Professional, reliable local services with expert team and proven track record.", images: ["http://img.b2bpic.net/free-photo/business-people-having-discussion-meeting_1153-3936.jpg"],
- },
-};
+ title: "F1 Security Service", description: "Professional security services"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-