diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index b59c8b8..1ff7e7d 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,54 +1,16 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Open_Sans } 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 openSans = Open_Sans({
- variable: "--font-open-sans", subsets: ["latin"],
-});
export const metadata: Metadata = {
- title: "Iceberackercalls | Premium Call Management Solutions", description: "Transform your business communications with Iceberackercalls. Advanced call management, analytics, and 24/7 support for enterprises.", keywords: "call management, business communication, call center software, customer communication platform", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Iceberackercalls | Premium Call Management Solutions", description: "Transform your business communications with Iceberackercalls. Advanced call management, analytics, and 24/7 support.", type: "website", siteName: "Iceberackercalls", images: [
- {
- url: "http://img.b2bpic.net/free-photo/young-beautiful-female-support-phone-operator-speaking-consulting-office_176420-954.jpg", alt: "Iceberackercalls Platform"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Iceberackercalls | Premium Call Management Solutions", description: "Transform your business communications with intelligent call management.", images: ["http://img.b2bpic.net/free-photo/young-beautiful-female-support-phone-operator-speaking-consulting-office_176420-954.jpg"],
- },
-};
+ title: "Cold Call Solutions | Sell Websites", description: "Professional cold calling services to help you sell websites and grow your business."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-