3 Commits

Author SHA1 Message Date
fd9a69aa39 Update src/app/page.tsx 2026-03-09 05:30:13 +00:00
9edeabd62a Update src/app/layout.tsx 2026-03-09 05:30:12 +00:00
d8de5bb140 Merge version_1 into main
Merge version_1 into main
2026-03-09 05:26:27 +00:00
2 changed files with 7 additions and 44 deletions

View File

@@ -1,56 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Lato } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
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"],
});
export const metadata: Metadata = { 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: { title: "Human Intelligence", description: "Unlock the power of human intelligence and transform your thinking"};
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"],
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1418,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -44,7 +44,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroOverlay <HeroOverlay
title="Unlock the Power of Human Intelligence" 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" tag="Intelligence Reimagined"
tagIcon={Sparkles} tagIcon={Sparkles}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ah9CurDnPeeinsOsLXQKgyvGS0/a-vibrant-modern-representation-of-human-1773033876987-37df3cbc.png" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ah9CurDnPeeinsOsLXQKgyvGS0/a-vibrant-modern-representation-of-human-1773033876987-37df3cbc.png"