import React, { useState, useEffect } from 'react'; import { Zap, Users, Home, PlusCircle, Menu, User, AlertTriangle, Mail, X, ShieldCheck, Star } from 'lucide-react'; import { initializeApp } from 'firebase/app'; import { getAuth, signInAnonymously, signInWithCustomToken, onAuthStateChanged } from 'firebase/auth'; const firebaseConfig = window.__firebase_config ? JSON.parse(window.__firebase_config) : { apiKey: "", authDomain: "", projectId: "", storageBucket: "", messagingSenderId: "", appId: "" }; const app = initializeApp(firebaseConfig); const auth = getAuth(app); export default function App() { const [view, setView] = useState('home'); const [menuOpen, setMenuOpen] = useState(false); const [user, setUser] = useState(null); useEffect(() => { const initAuth = async () => { if (window.__initial_auth_token) { await signInWithCustomToken(auth, window.__initial_auth_token); } else { await signInAnonymously(auth); } }; initAuth(); const unsubscribe = onAuthStateChanged(auth, setUser); return () => unsubscribe(); }, []); const NavItem = ({ name, icon: Icon, target }) => ( ); const emailBody = encodeURIComponent("Bonjour,\n\nJe souhaite rejoindre le Front Antithéiste.\n\nNom :\nPrénom :\nÂge :\nMotivations :"); const mailtoUrl = `mailto:frontantitheiste@gmail.com?subject=Candidature%20Engagement%20Front%20Antith%C3%A9iste&body=${emailBody}`; return (
{setView('home'); window.scrollTo({top:0, behavior:'smooth'})}}>

Front Antithéiste

{menuOpen && (
)}
{view === 'home' && (

ÉRADIQUER LA RELIGION POUR
L'annihilation du dogme.

La religion est le moteur principal des conflits, des guerres et de la haine. Nous militons pour son éradication totale afin de garantir un futur libéré du fanatisme.

Un constat sans appel

L'histoire et l'actualité démontrent que les dogmes religieux sont à l'origine de meurtres de masse et de divisions insolubles. Le Front Antithéiste se lève contre cette influence toxique sur l'humanité.

)} {view === 'team' && (

Structure de l'Organisation

L'ordre contre l'obscurantisme.

Haut Commandement

Fondateur
Nolan Lamboley

Leader

Fondateur
Liam B.

Leader

2

Militants engagés contre le dogme

)}

Rejoindre les rangs

L'engagement se fait par contact direct. Clique sur l'adresse ci-dessous pour nous envoyer ton nom, prénom, âge et tes motivations.

frontantitheiste@gmail.com

Action Directe via Email

); }