Compare commits
11 Commits
version_12
...
version_13
| Author | SHA1 | Date | |
|---|---|---|---|
| 1731c4c4b7 | |||
| e28325c7eb | |||
| 23ff3e1ec9 | |||
| c9783091fc | |||
| 587c86e356 | |||
| db8f1e2c34 | |||
| b0925744ff | |||
| 419482774b | |||
| 463ca7bdc6 | |||
| 1c85d2b717 | |||
| 4f976691f4 |
@@ -1,14 +1,13 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./styles/variables.css";
|
||||
import "./styles/base.css";
|
||||
import type { Metadata } from 'next';
|
||||
import { Inter } from 'next/font/google';
|
||||
import './globals.css';
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ['latin'] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
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."};
|
||||
title: 'Temple AI - Real-Time On-Chain Intelligence',
|
||||
description: 'Monitor protocol revenue, trading volume, and wallet activity with advanced analytics powered by Temple AI.',
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -16,28 +15,8 @@ export default function RootLayout({
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<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}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1407,4 +1386,4 @@ export default function RootLayout({
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -239,7 +239,7 @@ const page = () => {
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
text="Ready to transform your business with advanced AI intelligence? Let's create something amazing together."
|
||||
text="Get Real-Time Intelligence in 48 Hours—No Setup Hassle"
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{ text: 'Get Started', href: 'https://example.com/start' },
|
||||
@@ -265,4 +265,4 @@ const page = () => {
|
||||
);
|
||||
};
|
||||
|
||||
export default page;
|
||||
export default page;
|
||||
|
||||
@@ -12,13 +12,13 @@
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #1a1a1a;
|
||||
--primary-cta: #FF9500;
|
||||
--foreground: #000612e6;
|
||||
--primary-cta: #106EFB;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #000612e6;
|
||||
--accent: #333333;
|
||||
--background-accent: #E8E8E8;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #106EFB;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user