import { useEffect } from 'react' import SwipeableViews from 'react-swipeable-views' import { autoPlay } from 'react-swipeable-views-utils' import Link from 'next/link' import HeadTag from '../components/HeadTag' import Loader from '../components/Loader' import '../public/css/pages/index.css' const AutoPlaySwipeableViews = autoPlay(SwipeableViews) const Home = () => { useEffect(() => { console.log( '%c ⚙️ FunctionProject', 'color: #ffd800; font-weight: bold; background-color: #181818;padding: 10px;border-radius: 10px;font-size: 20px' ) }, []) return ( <>
{/* Slide 1 */}

FunctionProject

Apprenez la programmation grâce à l'apprentissage par projet alias fonction (en JavaScript).
En savoir plus ? (à-propos)
Découvrez la liste des fonctions disponibles :

{/* Slide 2 */}

Code Source

Le partage est essentiel afin de progresser.
Par conséquent chaque fonction a un article expliquant comment elle fonctionne et
le code source du projet est disponible sur mon profil GitHub :

GitHub
) } export default Home