diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 870b79d..69840d6 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,56 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Lato } 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 lato = Lato({
- variable: "--font-lato", subsets: ["latin"],
- weight: ["100", "300", "400", "700", "900"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Human Intelligence | Unlock Cognitive Excellence", description: "Discover how to develop and harness the power of human intelligence for innovation, problem-solving, and transformative thinking.", keywords: "human intelligence, cognitive development, problem-solving, innovation, intelligence enhancement, critical thinking", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Human Intelligence | Unlock Cognitive Excellence", description: "Discover how to develop and harness the power of human intelligence for innovation, problem-solving, and transformative thinking.", type: "website", siteName: "Human Intelligence", images: [
- {
- url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ah9CurDnPeeinsOsLXQKgyvGS0/a-vibrant-modern-representation-of-human-1773033876987-37df3cbc.png", alt: "Human Intelligence Platform"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Human Intelligence | Unlock Cognitive Excellence", description: "Discover how to develop and harness the power of human intelligence for innovation, problem-solving, and transformative thinking.", images: [
- "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ah9CurDnPeeinsOsLXQKgyvGS0/a-vibrant-modern-representation-of-human-1773033876987-37df3cbc.png"],
- },
-};
+ title: "Human Intelligence", description: "Unlock the power of human intelligence and transform your thinking"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-