diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 667536f..99f10b2 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,49 +1,20 @@
import type { Metadata } from "next";
-import { Open_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 openSans = Open_Sans({
- variable: "--font-open-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"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "WebiSecured | Professional Web Design for Local Businesses", description: "Custom web design services for local businesses. Stunning websites that attract customers and drive growth. SEO-optimized, mobile-friendly, built to convert.", keywords: "web design, local business websites, professional website design, small business web design, SEO-friendly websites, custom website design", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "WebiSecured | Professional Web Design for Local Businesses", description: "Custom web design services for local businesses. Stunning websites that attract customers and drive growth.", type: "website", siteName: "WebiSecured"},
- twitter: {
- card: "summary_large_image", title: "WebiSecured | Professional Web Design for Local Businesses", description: "Custom web design services for local businesses. Stunning websites that attract customers and drive growth."},
-};
+ title: "WebiSecured - Professional Web Design for Local Businesses", description: "Get more customers online with stunning, conversion-optimized websites designed for local businesses."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-