Compare commits
5 Commits
version_10
...
version_11
| Author | SHA1 | Date | |
|---|---|---|---|
| e8c5c28bd2 | |||
| 7af035e0da | |||
| c5e9c403e3 | |||
| cdfa540992 | |||
| dfe794b4a2 |
@@ -1,11 +1,14 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./styles/variables.css";
|
||||||
|
import "./styles/base.css";
|
||||||
|
|
||||||
const inter = Inter({ subsets: ["latin"] });
|
const inter = Inter({
|
||||||
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Mindex AI", description: "Intelligent marketing automation powered by advanced AI"};
|
title: "Temple AI - Advanced AI Solutions for Enterprise", description: "Transform your business with Temple AI's cutting-edge artificial intelligence technology. Enterprise-grade automation, real-time intelligence, and secure solutions."};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -13,8 +16,28 @@ export default function RootLayout({
|
|||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en" suppressHydrationWarning>
|
||||||
<body className={inter.className}>{children}
|
<head>
|
||||||
|
<script
|
||||||
|
dangerouslySetInnerHTML={{
|
||||||
|
__html: `
|
||||||
|
(function() {
|
||||||
|
try {
|
||||||
|
const vw = Math.max(document.documentElement.clientWidth || 0, window.innerWidth || 0) / 100;
|
||||||
|
document.documentElement.style.setProperty('--vw', vw + 'px');
|
||||||
|
window.addEventListener('resize', () => {
|
||||||
|
const vw = Math.max(document.documentElement.clientWidth || 0, window.innerWidth || 0) / 100;
|
||||||
|
document.documentElement.style.setProperty('--vw', vw + 'px');
|
||||||
|
});
|
||||||
|
} catch(e) {}
|
||||||
|
})();
|
||||||
|
`,
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</head>
|
||||||
|
<body className={`${inter.variable}`}>
|
||||||
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
|
|||||||
@@ -42,6 +42,15 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="hero-logo" data-section="hero-logo">
|
||||||
|
<div className="flex items-center justify-center py-16 px-4">
|
||||||
|
<div className="text-center">
|
||||||
|
<h2 className="text-4xl font-bold mb-4">Temple AI Logo</h2>
|
||||||
|
<p className="text-lg text-gray-600">This is a placeholder for the Hero Logo block</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitKpi
|
<HeroSplitKpi
|
||||||
title="Advanced AI-Powered Solutions for Modern Businesses"
|
title="Advanced AI-Powered Solutions for Modern Businesses"
|
||||||
|
|||||||
Reference in New Issue
Block a user