Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9b3e3f4ba1 | |||
| 1d81682183 | |||
| 516032e31f | |||
| 29904cc551 | |||
| 9029d726ab | |||
| e1c27f7df6 |
45
src/app/chat/page.tsx
Normal file
45
src/app/chat/page.tsx
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
|
|
||||||
|
export default function ChatPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="text-stagger"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="rounded"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="circleGradient"
|
||||||
|
cardStyle="glass-elevated"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="normal"
|
||||||
|
>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarStyleFullscreen
|
||||||
|
navItems={[
|
||||||
|
{ name: "Accueil", id: "/" },
|
||||||
|
{ name: "Chat", id: "/chat" },
|
||||||
|
]}
|
||||||
|
brandName="MathIA Chat"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<main className="container mx-auto p-8 pt-32 min-h-screen flex flex-col md:flex-row gap-8">
|
||||||
|
<div className="flex-1 border border-neutral-800 rounded-xl p-6 bg-neutral-900">
|
||||||
|
<h2 className="text-2xl font-bold mb-4">3D Math Teacher</h2>
|
||||||
|
<div className="h-96 w-full flex items-center justify-center border border-neutral-700 rounded bg-black/50">
|
||||||
|
<p className="text-neutral-500">[3D Avatar Component: Teaching Active]</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="flex-[2] border border-neutral-800 rounded-xl p-6 bg-white">
|
||||||
|
<h2 className="text-2xl font-bold mb-4 text-black">Whiteboard</h2>
|
||||||
|
<div className="h-96 w-full border border-neutral-300 rounded bg-white shadow-inner">
|
||||||
|
<p className="p-4 text-neutral-400">[Real-time Whiteboard Canvas]</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
219
src/app/page.tsx
219
src/app/page.tsx
@@ -11,8 +11,18 @@ import MediaAbout from '@/components/sections/about/MediaAbout';
|
|||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
import { Lightbulb, Monitor, PenTool, ShieldCheck, Zap } from "lucide-react";
|
import { Lightbulb, Monitor, PenTool, ShieldCheck, Zap } from "lucide-react";
|
||||||
import CardStack from '@/components/cardStack/CardStack';
|
import CardStack from '@/components/cardStack/CardStack';
|
||||||
|
import { useState } from 'react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
|
const [grokApiKey, setGrokApiKey] = useState("");
|
||||||
|
|
||||||
|
const handleContactSubmit = (data: Record<string, string>) => {
|
||||||
|
if (data.apiKey) {
|
||||||
|
setGrokApiKey(data.apiKey);
|
||||||
|
console.log("API Key secured in memory");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="icon-arrow"
|
defaultButtonVariant="icon-arrow"
|
||||||
@@ -27,116 +37,117 @@ export default function LandingPage() {
|
|||||||
headingFontWeight="semibold"
|
headingFontWeight="semibold"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Accueil", id: "hero" },
|
{ name: "Accueil", id: "hero" },
|
||||||
{ name: "Chat", id: "chat" },
|
{ name: "Chat", id: "chat" },
|
||||||
{ name: "Fonctionnalités", id: "features" },
|
{ name: "Fonctionnalités", id: "features" },
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "faq" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
]}
|
]}
|
||||||
brandName="MathIA Grok"
|
brandName="MathIA Grok"
|
||||||
/>
|
/>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
|
||||||
<HeroLogoBillboardSplit
|
|
||||||
background={{ variant: "plain" }}
|
|
||||||
logoText="MathIA x Grok"
|
|
||||||
description="Une interface de chat avancée combinant le raisonnement de Grok avec un espace de travail visuel. Posez vos questions, recevez des explications illustrées instantanément."
|
|
||||||
buttons={[
|
|
||||||
{ text: "Essayer la démo", href: "#contact" },
|
|
||||||
]}
|
|
||||||
buttonAnimation="slide-up"
|
|
||||||
layoutOrder="default"
|
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BiavO3dCn02likxwS7upWoCIlU/a-highly-sophisticated-digital-classroom-1775133772930-0a6d301f.png"
|
|
||||||
mediaAnimation="blur-reveal"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="chat" data-section="chat">
|
|
||||||
<CardStack
|
|
||||||
title="Grok Chat Interface"
|
|
||||||
description="Une interface de discussion ultra-minimaliste inspirée par l'esthétique xAI. Dialogue direct, clair et sans distraction pour vos besoins analytiques."
|
|
||||||
textboxLayout="split"
|
|
||||||
animationType="blur-reveal"
|
|
||||||
ariaLabel="Chat interface"
|
|
||||||
className="bg-black text-white"
|
|
||||||
>
|
|
||||||
<div className="flex flex-col gap-4 p-8 border border-neutral-800 rounded-lg">
|
|
||||||
<div className="text-sm text-neutral-400">Grok: Comment puis-je vous aider aujourd'hui ?</div>
|
|
||||||
<div className="h-px w-full bg-neutral-800 my-2" />
|
|
||||||
<div className="text-white font-medium">User: Explique-moi le calcul intégral.</div>
|
|
||||||
</div>
|
</div>
|
||||||
</CardStack>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="hero" data-section="hero">
|
||||||
<MediaAbout
|
<HeroLogoBillboardSplit
|
||||||
useInvertedBackground={false}
|
background={{ variant: "plain" }}
|
||||||
title="Réflexion augmentée"
|
logoText="MathIA x Grok"
|
||||||
description="MathIA utilise les capacités de raisonnement de Grok pour analyser des problèmes complexes et générer des solutions étape par étape sur un tableau blanc numérique, créant une expérience de chat interactive et visuelle."
|
description="Une interface de chat avancée combinant le raisonnement de Grok avec un espace de travail visuel. Posez vos questions, recevez des explications illustrées instantanément."
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BiavO3dCn02likxwS7upWoCIlU/an-ai-powered-math-teacher-character-int-1775133776116-85c101a8.png"
|
buttons={[
|
||||||
imageAlt="Interface de chat et tableau blanc"
|
{ text: "Essayer la démo", href: "#contact" },
|
||||||
/>
|
]}
|
||||||
</div>
|
buttonAnimation="slide-up"
|
||||||
|
layoutOrder="default"
|
||||||
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BiavO3dCn02likxwS7upWoCIlU/a-highly-sophisticated-digital-classroom-1775133772930-0a6d301f.png"
|
||||||
|
mediaAnimation="blur-reveal"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="features" data-section="features">
|
<div id="chat" data-section="chat">
|
||||||
<FeatureBorderGlow
|
<CardStack
|
||||||
textboxLayout="split"
|
title="Grok Chat Interface"
|
||||||
useInvertedBackground={false}
|
description={grokApiKey ? "Connecté à Grok AI - Prêt à enseigner les mathématiques." : "Veuillez configurer votre clé API dans la section contact pour activer le tuteur IA."}
|
||||||
animationType="slide-up"
|
textboxLayout="split"
|
||||||
features={[
|
animationType="blur-reveal"
|
||||||
{ icon: Lightbulb, title: "Chat Grok IA", description: "Interaction naturelle avec un modèle de langage performant." },
|
ariaLabel="Chat interface"
|
||||||
{ icon: PenTool, title: "Visualisation", description: "Conversion automatique des concepts mathématiques en schémas." },
|
className="bg-black text-white"
|
||||||
{ icon: Monitor, title: "Interface épurée", description: "Design noir et blanc minimaliste pour se concentrer sur l'essentiel." },
|
>
|
||||||
{ icon: Zap, title: "Réponses rapides", description: "Latence ultra-faible pour un apprentissage fluide." },
|
<div className="flex flex-col gap-4 p-8 border border-neutral-800 rounded-lg">
|
||||||
{ icon: ShieldCheck, title: "Confidentialité", description: "Gestion sécurisée de vos clés API en local." },
|
<div className="text-sm text-neutral-400">{grokApiKey ? "Grok: Système en ligne. Quelle équation souhaitez-vous résoudre ?" : "Grok: En attente de clé API..."}</div>
|
||||||
]}
|
<div className="h-px w-full bg-neutral-800 my-2" />
|
||||||
title="La puissance du visuel"
|
<div className="text-white font-medium">User: Explique-moi le calcul intégral.</div>
|
||||||
description="Une interface pensée pour la clarté et l'efficacité."
|
</div>
|
||||||
/>
|
</CardStack>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="about" data-section="about">
|
||||||
<FaqSplitMedia
|
<MediaAbout
|
||||||
textboxLayout="split"
|
useInvertedBackground={false}
|
||||||
useInvertedBackground={false}
|
title="Réflexion augmentée"
|
||||||
faqs={[
|
description="MathIA utilise les capacités de raisonnement de Grok pour analyser des problèmes complexes et générer des solutions étape par étape sur un tableau blanc numérique, créant une expérience de chat interactive et visuelle."
|
||||||
{ id: "1", title: "Qu'est-ce que MathIA ?", content: "C'est une plateforme qui associe Grok AI à un canevas numérique interactif." },
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BiavO3dCn02likxwS7upWoCIlU/an-ai-powered-math-teacher-character-int-1775133776116-85c101a8.png"
|
||||||
{ id: "2", title: "Besoin d'une clé API ?", content: "Oui, vous utilisez votre propre clé pour une confidentialité totale." },
|
imageAlt="Interface de chat et tableau blanc"
|
||||||
]}
|
/>
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BiavO3dCn02likxwS7upWoCIlU/clean-interface-showing-interactive-math-1775133774387-5fe1858a.png"
|
</div>
|
||||||
title="Questions Fréquentes"
|
|
||||||
description="Plus d'informations sur MathIA."
|
|
||||||
faqsAnimation="slide-up"
|
|
||||||
mediaAnimation="slide-up"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="features" data-section="features">
|
||||||
<ContactSplitForm
|
<FeatureBorderGlow
|
||||||
useInvertedBackground={false}
|
textboxLayout="split"
|
||||||
title="Accès au système"
|
useInvertedBackground={false}
|
||||||
description="Configurez votre environnement."
|
animationType="slide-up"
|
||||||
inputs={[
|
features={[
|
||||||
{ name: "name", type: "text", placeholder: "Nom", required: true },
|
{ icon: Lightbulb, title: "Chat Grok IA", description: "Interaction naturelle avec un modèle de langage performant." },
|
||||||
{ name: "email", type: "email", placeholder: "Email", required: true },
|
{ icon: PenTool, title: "Visualisation", description: "Conversion automatique des concepts mathématiques en schémas." },
|
||||||
{ name: "apiKey", type: "password", placeholder: "Clé API Grok", required: true },
|
{ icon: Monitor, title: "Interface épurée", description: "Design noir et blanc minimaliste pour se concentrer sur l'essentiel." },
|
||||||
]}
|
{ icon: Zap, title: "Réponses rapides", description: "Latence ultra-faible pour un apprentissage fluide." },
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BiavO3dCn02likxwS7upWoCIlU/futuristic-digital-aesthetic-background--1775133773550-69c25a60.png"
|
{ icon: ShieldCheck, title: "Confidentialité", description: "Gestion sécurisée de vos clés API en local." },
|
||||||
mediaAnimation="blur-reveal"
|
]}
|
||||||
/>
|
title="La puissance du visuel"
|
||||||
</div>
|
description="Une interface pensée pour la clarté et l'efficacité."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="faq" data-section="faq">
|
||||||
<FooterLogoReveal
|
<FaqSplitMedia
|
||||||
logoText="MathIA"
|
textboxLayout="split"
|
||||||
leftLink={{ text: "Confidentialité", href: "#" }}
|
useInvertedBackground={false}
|
||||||
rightLink={{ text: "Contact", href: "#contact" }}
|
faqs={[
|
||||||
/>
|
{ id: "1", title: "Qu'est-ce que MathIA ?", content: "C'est une plateforme qui associe Grok AI à un canevas numérique interactif." },
|
||||||
</div>
|
{ id: "2", title: "Besoin d'une clé API ?", content: "Oui, vous utilisez votre propre clé pour une confidentialité totale." },
|
||||||
|
]}
|
||||||
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BiavO3dCn02likxwS7upWoCIlU/clean-interface-showing-interactive-math-1775133774387-5fe1858a.png"
|
||||||
|
title="Questions Fréquentes"
|
||||||
|
description="Plus d'informations sur MathIA."
|
||||||
|
faqsAnimation="slide-up"
|
||||||
|
mediaAnimation="slide-up"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="contact" data-section="contact">
|
||||||
|
<ContactSplitForm
|
||||||
|
useInvertedBackground={false}
|
||||||
|
title="Accès au système"
|
||||||
|
description="Configurez votre environnement."
|
||||||
|
inputs={[
|
||||||
|
{ name: "name", type: "text", placeholder: "Nom", required: true },
|
||||||
|
{ name: "email", type: "email", placeholder: "Email", required: true },
|
||||||
|
{ name: "apiKey", type: "password", placeholder: "Clé API Grok", required: true },
|
||||||
|
]}
|
||||||
|
onSubmit={handleContactSubmit}
|
||||||
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BiavO3dCn02likxwS7upWoCIlU/futuristic-digital-aesthetic-background--1775133773550-69c25a60.png"
|
||||||
|
mediaAnimation="blur-reveal"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterLogoReveal
|
||||||
|
logoText="MathIA"
|
||||||
|
leftLink={{ text: "Confidentialité", href: "#" }}
|
||||||
|
rightLink={{ text: "Contact", href: "#contact" }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user