Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-09 05:30:17 +00:00
2 changed files with 7 additions and 44 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1418,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -44,7 +44,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroOverlay
title="Unlock the Power of Human Intelligence"
description="Discover how cognitive excellence drives innovation, problem-solving, and transformative thinking in the modern world."
description="Transform your thinking and solve problems 3x faster with cognitive excellence that drives innovation and breakthrough results."
tag="Intelligence Reimagined"
tagIcon={Sparkles}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ah9CurDnPeeinsOsLXQKgyvGS0/a-vibrant-modern-representation-of-human-1773033876987-37df3cbc.png"