'use client'; import styles from './page.module.scss'; import images from '@/data/images'; import { Billboard, Banner } from '@/components/webgl'; import { Loader } from '@/components/ui/modules'; import { View } from '@/webgl/View'; import { PerspectiveCamera } from '@react-three/drei'; import { useCollageTexture } from '@/hooks'; const COUNT = 10; const GAP = 3.2; export default function Home() { const { texture, dimensions, isLoading } = useCollageTexture(images); if (isLoading) return ; return (
{Array.from({ length: COUNT }).map((_, index) => [ , , ])}
); }