9 Commits

Author SHA1 Message Date
ce70ce5b58 Merge version_6 into main
Merge version_6 into main
2026-04-18 17:07:59 +00:00
294c344fe2 Update src/app/page.tsx 2026-04-18 17:07:56 +00:00
662a04f504 Merge version_5 into main
Merge version_5 into main
2026-04-18 17:05:20 +00:00
a4325bb9f8 Update src/app/page.tsx 2026-04-18 17:05:17 +00:00
1683086147 Merge version_4 into main
Merge version_4 into main
2026-04-18 17:03:01 +00:00
c42cc9f63e Update src/app/page.tsx 2026-04-18 17:02:58 +00:00
1d73a15829 Merge version_3 into main
Merge version_3 into main
2026-04-18 17:01:15 +00:00
759b4e639e Update src/app/page.tsx 2026-04-18 17:01:12 +00:00
451aacdc4a Merge version_2 into main
Merge version_2 into main
2026-04-18 16:59:42 +00:00

View File

@@ -1,5 +1,6 @@
"use client";
import React, { useState } from "react";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
@@ -15,6 +16,28 @@ import FooterBase from "@/components/sections/footer/FooterBase";
import { Sparkles, Clock, Brain, Activity, Target, Shield, TrendingUp, Award, Zap, Users } from "lucide-react";
export default function WebAgency2Page() {
const [uploadStatus, setUploadStatus] = useState<string | null>(null);
const [analysis, setAnalysis] = useState<string | null>(null);
const handleUpload = () => {
const input = document.createElement('input');
input.type = 'file';
input.accept = 'image/*';
input.onchange = (e: any) => {
const file = e.target.files?.[0];
if (!file) return;
setUploadStatus("Analyzing " + file.name + "...");
setTimeout(() => {
const patterns = ["Head and Shoulders", "Double Bottom", "Rising Wedge", "Flag Pattern", "Triangle Consolidation"];
const predictions = ["72% probability of a bearish reversal", "65% bullish breakout signal", "80% trend continuation", "High volatility expected", "Neutral market sentiment" ];
const randomIdx = Math.floor(Math.random() * patterns.length);
setUploadStatus("Analysis complete for " + file.name + "!");
setAnalysis(`Based on the identified ${patterns[randomIdx]}, our AI predicts a ${predictions[randomIdx]}. Recommended Entry: 1.0${Math.floor(Math.random() * 9000)}. Target: 1.0${Math.floor(Math.random() * 9000)}.`);
}, 2000);
};
input.click();
};
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -37,7 +60,7 @@ export default function WebAgency2Page() {
{ name: "Pricing", id: "pricing" },
{ name: "Upload", id: "contact" },
]}
button={{ text: "Upload Chart", href: "#contact" }}
button={{ text: "Upload Chart", onClick: handleUpload }}
/>
<div id="hero">
<HeroSplitDoubleCarousel
@@ -48,8 +71,8 @@ export default function WebAgency2Page() {
tagAnimation="slide-up"
background={{ variant: "canvas-reveal" }}
buttons={[
{ text: "Start Analyzing", href: "#contact" },
{ text: "Learn How", href: "#features" },
{ text: "Start Analyzing", onClick: handleUpload },
{ text: "Learn How", onClick: () => { const el = document.getElementById("features"); if (el) el.scrollIntoView({ behavior: "smooth" }); } },
]}
buttonAnimation="slide-up"
carouselPosition="right"
@@ -146,23 +169,29 @@ export default function WebAgency2Page() {
]}
/>
</div>
<div id="contact">
<div id="contact" className="flex flex-col items-center py-20 bg-[var(--card)]">
<ContactCTA
tag="Ready to Predict?"
title="Start Your Free Analysis Today"
description="Upload your first chart now and let our AI show you the potential movement of the market."
buttons={[{ text: "Upload Screenshot", href: "#contact" }]}
buttons={[{ text: "Upload Screenshot", onClick: handleUpload }]}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
/>
{uploadStatus && (
<div className="mt-8 p-6 bg-[var(--background)] border border-[var(--accent)] rounded-xl w-full max-w-lg text-center">
<p className="font-semibold text-lg">{uploadStatus}</p>
{analysis && <p className="mt-4 text-[var(--foreground)] leading-relaxed">{analysis}</p>}
</div>
)}
</div>
<FooterBase
logoText="ForexAI"
copyrightText="© 2026 | ForexAI Analytics"
columns={[
{ title: "Platform", items: [{ label: "Home", href: "#" }, { label: "Dashboard", href: "#" }] },
{ title: "Resources", items: [{ label: "Blog", href: "#" }, { label: "FAQs", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
{ title: "Platform", items: [{ label: "Home", onClick: () => window.scrollTo({ top: 0, behavior: "smooth" }) }, { label: "Dashboard", onClick: () => { const el = document.getElementById("hero"); if (el) el.scrollIntoView({ behavior: "smooth" }); } }] },
{ title: "Resources", items: [{ label: "Blog", onClick: () => window.location.href = "/blog" }, { label: "FAQs", onClick: () => { const el = document.getElementById("faq"); if (el) el.scrollIntoView({ behavior: "smooth" }); } }] },
{ title: "Legal", items: [{ label: "Privacy", onClick: () => window.location.href = "/legal" }, { label: "Terms", onClick: () => window.location.href = "/terms" }] },
]}
/>
</ReactLenis>