import type { JSX } from "solid-js"; import blurIndigoImage from "@/images/blur-indigo.webp"; import blurCyanImage from "@/images/blur-cyan.webp"; import { HeroBackground } from "./HeroBackground"; import { Button } from "@/components/Button"; import { Highlight } from "solid-highlight"; import { Image } from "@/components/Image"; import { For } from "solid-js"; import clsx from "clsx"; const codeLanguage = "javascript"; const code = `export default { role: 'developer', qualifications: [ 'DWWM', 'CDA', 'CDUI', ] }`; const tabs = [ { name: "memento-dev.config.js", isActive: true }, { name: "package.json", isActive: false }, ]; function TrafficLightsIcon(props: JSX.IntrinsicElements["svg"]) { return ( ); } export function Hero() { return (

Souviens-toi que tu développeras.

Découvrez des ressources essentielles pour améliorer tes compétences en développement.

{(tab) => (
{tab.name}
)}
{code} {/* {({ class, style, tokens, getLineProps, getTokenProps }) => (
                          
                            {tokens.map((line, lineIndex) => (
                              
{line.map((token, tokenIndex) => ( ))}
))}
)}
*/}
); }