{"version":3,"file":"static/chunks/216-085565d63fb237ff.js","mappings":"qKAGO,SAASA,EAAYC,CAY3B,KAZ2B,CAC1BC,UAAAA,CAAS,CACTC,MAAAA,CAAK,CACLC,KAAAA,CAAI,CACJC,YAAAA,CAAW,CACXC,WAAAA,CAAU,CAOX,CAZ2BL,EAa1B,MACE,GAAAM,EAAAC,IAAA,EAACC,IAAIA,CACHC,UAAW,gRAEVC,MAAA,CADCL,EAAa,6CAA+C,aAE9DM,KAAM,sBAAgCD,MAAA,CAAVT,aAE5B,GAAAK,EAAAC,IAAA,EAACK,MAAAA,CAAIH,UAAU,0EACb,GAAAH,EAAAO,GAAA,EAACC,MAAAA,CAAIL,UAAU,2CAA2CM,IAAKb,EAAOc,IAAKb,IAC3E,GAAAG,EAAAO,GAAA,EAACD,MAAAA,CAAIH,UAAU,sNAA6M,mBAI9N,GAAAH,EAAAO,GAAA,EAACI,IAAAA,CAAER,UAAU,yCAAiCL,MAGpD,iEC9BO,IAAMc,EAAwB,CACnCf,KAAM,cACNC,YAAa,sCACbe,KAAO,s4BAkBPjB,MAAO,4BACT,ECtBakB,EAAwB,CACnCjB,KAAM,QACNC,YAAa,iBACbe,KAAO,26BAyBPjB,MAAO,4BACT,EC7BamB,EAAuB,CAClClB,KAAM,OACNC,YAAa,+BACbe,KAAO,q4FAyFPjB,MAAO,2BACT,EC7FaoB,EAA6B,CACxCnB,KAAM,eACNC,YAAa,wBACbe,KAAO,itDAkEPjB,MAAO,0BACT,ECtEaqB,EAAqB,CAChCpB,KAAM,cACNC,YAAa,+BACbF,MAAO,mCACPsB,UAAW,GACXL,KAAO,mzJAmIT,ECxIaM,EAA8B,CACzCtB,KAAM,eACNC,YAAa,oBACbe,KAAO,m/GAoIPjB,MAAO,kCACT,ECxIawB,EAA0B,CACrCvB,KAAM,UACNC,YAAa,iCACbe,KAAO,++FAuEPjB,MAAO,8BACT,ECrEayB,EAAW,CACtB,CAACT,EAAaf,IAAI,CAAC,CAAEe,EACrB,CAACG,EAAYlB,IAAI,CAAC,CAAEkB,EACpB,CAACI,EAAmBtB,IAAI,CAAC,CAAEsB,EAC3B,CAACC,EAAevB,IAAI,CAAC,CAAEuB,EACvB,CAACN,EAAajB,IAAI,CAAC,CAAEiB,EACrB,CAACE,EAAkBnB,IAAI,CAAC,CAAEmB,EAC1B,CAACC,EAAUpB,IAAI,CAAC,CAAEoB,CACpB","sources":["webpack://_N_E/./src/components/ExampleLink/ExampleLink.tsx","webpack://_N_E/./src/content/examples/basic/index.ts","webpack://_N_E/./src/content/examples/clock/index.ts","webpack://_N_E/./src/content/examples/dice/index.ts","webpack://_N_E/./src/content/examples/game-of-life/index.ts","webpack://_N_E/./src/content/examples/tic-tac-toe/index.ts","webpack://_N_E/./src/content/examples/videoplayer/index.ts","webpack://_N_E/./src/content/examples/weather/index.ts","webpack://_N_E/./src/content/examples/index.ts"],"sourcesContent":["import Link from \"next/link\";\nimport * as React from \"react\";\n\nexport function ExampleLink({\n exampleId,\n image,\n name,\n description,\n isSelected,\n}: {\n exampleId: string;\n image: string;\n name: string;\n description: string;\n isSelected: boolean;\n}) {\n return (\n \n
\n {name}\n
\n See example\n
\n
\n

{description}

\n \n );\n}\n","import { Example } from \"@/types/example\";\n\nexport const basicExample: Example = {\n name: \"Basic Scene\",\n description: \"A basic scene with models and cubes\",\n code: `\n\n\n\n\n\n \n\n\n\n\n`,\n image: \"/images/examples/basic.png\",\n};\n","import { Example } from \"@/types/example\";\n\nexport const clockExample: Example = {\n name: \"clock\",\n description: \"A simple clock\",\n code: `\n \n \n \n \n \n \n \n \n \n \n\n\n`,\n image: \"/images/examples/clock.png\",\n};\n","import { Example } from \"@/types/example\";\n\nexport const diceExample: Example = {\n name: \"Dice\",\n description: \"A dice with animated rolling\",\n code: `\n \n \n \n \n\n`,\n image: \"/images/examples/dice.png\",\n};\n","import { Example } from \"@/types/example\";\n\nexport const gameOfLifeExample: Example = {\n name: \"game-of-life\",\n description: \"Conway's Game of Life\",\n code: `\n`,\n image: \"/images/examples/gol.png\",\n};\n","import { Example } from \"@/types/example\";\n\nexport const ticTacToe: Example = {\n name: \"Tic Tac Toe\",\n description: \"A simple game of tic tac toe\",\n image: \"/images/examples/tic-tac-toe.png\",\n baseScene: false,\n code: `\n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n\n\n`,\n};\n","import { Example } from \"@/types/example\";\n\nexport const videoPlayerExample: Example = {\n name: \"Video player\",\n description: \"A 3d video player\",\n code: `\n \n \n \n \n \n \n \n \n\n`,\n image: \"/images/examples/videoplayer.png\",\n};\n","import { Example } from \"@/types/example\";\n\nexport const weatherExample: Example = {\n name: \"Weather\",\n description: \"Integration with a weather API\",\n code: `\n\n\n\n\n\n`,\n image: \"/images/examples/weather.png\",\n};\n","import { basicExample } from \"@/src/content/examples/basic\";\nimport { clockExample } from \"@/src/content/examples/clock\";\nimport { diceExample } from \"@/src/content/examples/dice\";\nimport { gameOfLifeExample } from \"@/src/content/examples/game-of-life\";\nimport { ticTacToe } from \"@/src/content/examples/tic-tac-toe\";\nimport { videoPlayerExample } from \"@/src/content/examples/videoplayer\";\nimport { weatherExample } from \"@/src/content/examples/weather\";\n\nexport const examples = {\n [basicExample.name]: basicExample,\n [diceExample.name]: diceExample,\n [videoPlayerExample.name]: videoPlayerExample,\n [weatherExample.name]: weatherExample,\n [clockExample.name]: clockExample,\n [gameOfLifeExample.name]: gameOfLifeExample,\n [ticTacToe.name]: ticTacToe,\n};\n"],"names":["ExampleLink","param","exampleId","image","name","description","isSelected","react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__","jsxs","Link","className","concat","href","div","jsx","img","src","alt","p","basicExample","code","clockExample","diceExample","gameOfLifeExample","ticTacToe","baseScene","videoPlayerExample","weatherExample","examples"],"sourceRoot":""}