From e28325c7ebd39f4b4ada873c7aeae0769cfd48d0 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 23:52:59 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dbffddf..b681456 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,13 @@ -import type { Metadata } from "next"; -import { Inter } from "next/font/google"; -import "./globals.css"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './globals.css'; -const inter = Inter({ subsets: ["latin"] }); +const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "Mindex AI", description: "Intelligent marketing automation powered by advanced AI"}; + 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, -- 2.49.1 From 1731c4c4b757f54e9f4c7cc6161164677e034496 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 23:53:00 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 454 +++++++++++++++++++++++------------------------ 1 file changed, 220 insertions(+), 234 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index e748eaf..556c9f7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,282 +1,268 @@ -"use client"; +'use client'; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; -import TextAbout from '@/components/sections/about/TextAbout'; -import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven'; -import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard'; +import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; +import TimelineHorizontalCardStack from '@/components/cardStack/layouts/timelines/TimelineHorizontalCardStack'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; -import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; -import FaqDouble from '@/components/sections/faq/FaqDouble'; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import { CheckCircle, TrendingUp, Users, Zap, Sparkles, Globe, Smartphone, Megaphone, MessageSquare, Cpu, Package } from 'lucide-react'; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Sparkles, TrendingUp, Zap, Shield, Hexagon, House, MessageSquareText, Settings, CircleDollarSign, ArrowLeftRight, Send, Twitter, Linkedin, Globe } from 'lucide-react'; + +const page = () => { + const navItems = [ + { name: 'Home', id: '/' }, + { name: 'Features', id: '#features' }, + { name: 'Process', id: '#process' }, + { name: 'Testimonials', id: '#testimonials' }, + ]; + + const features = [ + { + id: '01', + title: 'Real-Time Intelligence', + description: 'Monitor protocol revenue, trading volume, and wallet activity with live updates.', + imageSrc: 'https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=800&h=600&fit=crop', + imageAlt: 'Real-time intelligence dashboard' + }, + { + id: '02', + title: 'Advanced Analytics', + description: 'Deep insights into market trends and on-chain metrics with predictive analysis.', + imageSrc: 'https://images.unsplash.com/photo-1560707303-4e980ce876ad?w=800&h=600&fit=crop', + imageAlt: 'Advanced analytics interface' + }, + { + id: '03', + title: 'Secure Infrastructure', + description: 'Enterprise-grade security with encrypted data transfer and compliance standards.', + imageSrc: 'https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=600&fit=crop', + imageAlt: 'Secure infrastructure' + }, + { + id: '04', + title: 'Custom Integration', + description: 'Seamless API integration with your existing systems and workflows.', + imageSrc: 'https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=800&h=600&fit=crop', + imageAlt: 'Custom integration setup' + } + ]; + + const testimonials = [ + { + id: '1', + title: 'Transformed Our Data Strategy', + quote: 'Temple AI gave us the insights we needed to make confident decisions. The real-time data has been invaluable to our strategy.', + name: 'Sarah Mitchell', + role: 'CEO of TechFlow Solutions', + imageSrc: 'https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=400&h=400&fit=crop', + imageAlt: 'Sarah Mitchell headshot' + }, + { + id: '2', + title: 'Best Analytics Platform', + quote: "The accuracy and speed of Temple AI's analytics platform exceeded all our expectations. Implementation was smooth and support was exceptional.", name: 'Marcus Johnson', + role: 'Director of Analytics at DataCorp', + imageSrc: 'https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=400&fit=crop', + imageAlt: 'Marcus Johnson headshot' + }, + { + id: '3', + title: 'Incredible ROI', + quote: 'We saw measurable improvements in our operations within the first month. Temple AI is now central to our decision-making process.', + name: 'Elena Chen', + role: 'VP of Operations at InnovateCo', + imageSrc: 'https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=400&h=400&fit=crop', + imageAlt: 'Elena Chen headshot' + } + ]; + + const processMediaItems = [ + { + imageSrc: 'https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=600&h=400&fit=crop', + imageAlt: 'Step 1: Data Collection' + }, + { + imageSrc: 'https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=600&h=400&fit=crop', + imageAlt: 'Step 2: Analysis' + }, + { + imageSrc: 'https://images.unsplash.com/photo-1560707303-4e980ce876ad?w=600&h=400&fit=crop', + imageAlt: 'Step 3: Insights' + } + ]; -export default function LandingPage() { return (
- -
- -
-
-
-
- + +
+

Data Collection

+

We gather real-time data from multiple on-chain sources and protocols.

+
+
+

Analysis

+

Advanced algorithms process and analyze the data for meaningful insights.

+
+
+

Insights

+

Actionable intelligence delivered through intuitive dashboards and reports.

+
+
+
+ +
+
-
- -
- -
- -
- -
- -
-
-
); -} \ No newline at end of file +}; + +export default page; -- 2.49.1