import { HeroBackground } from "@syntax/HeroBackground"; import blurIndigoImage from "@/images/blur-indigo.webp"; import blurCyanImage from "@/images/blur-cyan.webp"; import { Image } from "@/components/common/Image"; import { Highlight } from "prism-react-renderer"; import React, { Fragment } from "react"; import { Button } from "@syntax/Button"; 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: React.ComponentPropsWithoutRef<"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.

{tabs.map((tab) => (
{tab.name}
))}
{({ className, style, tokens, getLineProps, getTokenProps }) => (
                          
                            {tokens.map((line, lineIndex) => (
                              
{line.map((token, tokenIndex) => ( ))}
))}
)}
); }