diff --git a/.gitignore b/.gitignore index f953031..e9cf974 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,24 @@ report.*.json # .vscode Debugging .vscode/*-debug-profile + +#amplify-do-not-edit-begin +amplify/\#current-cloud-backend +amplify/.config/local-* +amplify/logs +amplify/mock-data +amplify/backend/amplify-meta.json +amplify/backend/.temp +build/ +dist/ +node_modules/ +aws-exports.js +awsconfiguration.json +amplifyconfiguration.json +amplifyconfiguration.dart +amplify-build-config.json +amplify-gradle-config.json +amplifytools.xcconfig +.secret-* +**.sample +#amplify-do-not-edit-end diff --git a/src/components/canvas/Box.jsx b/src/components/canvas/Box.jsx deleted file mode 100644 index cde47b2..0000000 --- a/src/components/canvas/Box.jsx +++ /dev/null @@ -1,35 +0,0 @@ -import useStore from '@/helpers/store' -import { useFrame } from '@react-three/fiber' -import { useRef, useState } from 'react' - -const BoxComponent = ({ route }) => { - const router = useStore((s) => s.router) - // This reference will give us direct access to the THREE.Mesh object - const mesh = useRef(null) - // Set up state for the hovered and active state - const [hovered, setHover] = useState(false) - // Subscribe this component to the render-loop, rotate the mesh every frame - useFrame((state, delta) => - mesh.current - ? (mesh.current.rotation.y = mesh.current.rotation.x += 0.01) - : null - ) - // Return the view, these are regular Threejs elements expressed in JSX - return ( - <> - router.push(route)} - onPointerOver={(e) => setHover(true)} - onPointerOut={(e) => setHover(false)} - scale={hovered ? 1.1 : 1} - > - - - - - - - ) -} -export default BoxComponent diff --git a/src/components/canvas/Galaxy.jsx b/src/components/canvas/Galaxy.jsx index 99f071e..95642e9 100644 --- a/src/components/canvas/Galaxy.jsx +++ b/src/components/canvas/Galaxy.jsx @@ -295,7 +295,7 @@ export function Nucleus({ size }) { color.setHSL(Math.random(), 0.7, Math.random() * 0.2 + 0.05) return ( - + diff --git a/src/components/dom/integrations/AirtableInstance.jsx b/src/components/dom/integrations/AirtableInstance.jsx index a1a7133..9e75070 100644 --- a/src/components/dom/integrations/AirtableInstance.jsx +++ b/src/components/dom/integrations/AirtableInstance.jsx @@ -30,6 +30,14 @@ export function AirtablePerformerInstance () { ) } +export function AirtableSponsorInstance () { + return ( + }> + + + + ) +} export function AirtableFairInstance () { return ( diff --git a/src/pages/box.jsx b/src/pages/box.jsx deleted file mode 100644 index 1a2fe8b..0000000 --- a/src/pages/box.jsx +++ /dev/null @@ -1,47 +0,0 @@ -import Instructions from '@/components/dom/Instructions' -import { - ApplySection, -} from "@/components/dom/page-sections"; -import dynamic from 'next/dynamic' - -const Box = dynamic(() => import('@/components/canvas/Box'), { - ssr: false, -}) -const NomadVox = dynamic(() => import('@/components/canvas/Nomad'), { - ssr: false, -}) -const DOM = () => { - return ( - // Step 5 - delete Instructions components - - ) -} - -const R3F = () => { - return ( - <> - - {/* */} - - ) -} - -const Page = () => { - return ( - <> - - {/* @ts-ignore */} - - - ) -} - -export default Page - -export async function getStaticProps() { - return { - props: { - title: 'Box', - }, - } -}