├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── customtypes └── page │ ├── index.json │ └── mocks.json ├── next.config.mjs ├── package.json ├── postcss.config.js ├── prismicio-types.d.ts ├── public ├── Soda-can.bin ├── Soda-can.gltf ├── fonts │ ├── Alpino-Variable.woff │ └── Alpino-Variable.woff2 ├── hdr │ ├── field.hdr │ └── lobby.hdr └── labels │ ├── cherry.png │ ├── grape.png │ ├── lemon-lime.png │ ├── strawberry.png │ └── watermelon.png ├── slicemachine.config.json ├── src ├── app │ ├── [uid] │ │ └── page.tsx │ ├── api │ │ ├── exit-preview │ │ │ └── route.ts │ │ ├── preview │ │ │ └── route.ts │ │ └── revalidate │ │ │ └── route.ts │ ├── app.css │ ├── icon.svg │ ├── layout.tsx │ ├── page.tsx │ └── slice-simulator │ │ └── page.tsx ├── components │ ├── Bounded.tsx │ ├── Button.tsx │ ├── CircleText.tsx │ ├── FizziLogo.tsx │ ├── FloatingCan.tsx │ ├── Footer.tsx │ ├── Header.tsx │ ├── SodaCan.tsx │ ├── TextSplitter.tsx │ └── ViewCanvas.tsx ├── hooks │ ├── useMediaQuery.ts │ └── useStore.ts ├── prismicio.ts └── slices │ ├── AlternatingText │ ├── Scene.tsx │ ├── index.tsx │ ├── mocks.json │ ├── model.json │ └── screenshot-default.png │ ├── BigText │ ├── index.tsx │ ├── mocks.json │ ├── model.json │ └── screenshot-default.png │ ├── Carousel │ ├── ArrowIcon.tsx │ ├── WavyCircles.tsx │ ├── index.tsx │ ├── mocks.json │ ├── model.json │ └── screenshot-default.png │ ├── Hero │ ├── Bubbles.tsx │ ├── Scene.tsx │ ├── index.tsx │ ├── mocks.json │ ├── model.json │ └── screenshot-default.png │ ├── SkyDive │ ├── Scene.tsx │ ├── index.tsx │ ├── mocks.json │ ├── model.json │ └── screenshot-default.png │ └── index.ts ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .slicemachine 2 | .next -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/README.md -------------------------------------------------------------------------------- /customtypes/page/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/customtypes/page/index.json -------------------------------------------------------------------------------- /customtypes/page/mocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/customtypes/page/mocks.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prismicio-types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/prismicio-types.d.ts -------------------------------------------------------------------------------- /public/Soda-can.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/public/Soda-can.bin -------------------------------------------------------------------------------- /public/Soda-can.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/public/Soda-can.gltf -------------------------------------------------------------------------------- /public/fonts/Alpino-Variable.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/public/fonts/Alpino-Variable.woff -------------------------------------------------------------------------------- /public/fonts/Alpino-Variable.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/public/fonts/Alpino-Variable.woff2 -------------------------------------------------------------------------------- /public/hdr/field.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/public/hdr/field.hdr -------------------------------------------------------------------------------- /public/hdr/lobby.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/public/hdr/lobby.hdr -------------------------------------------------------------------------------- /public/labels/cherry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/public/labels/cherry.png -------------------------------------------------------------------------------- /public/labels/grape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/public/labels/grape.png -------------------------------------------------------------------------------- /public/labels/lemon-lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/public/labels/lemon-lime.png -------------------------------------------------------------------------------- /public/labels/strawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/public/labels/strawberry.png -------------------------------------------------------------------------------- /public/labels/watermelon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/public/labels/watermelon.png -------------------------------------------------------------------------------- /slicemachine.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/slicemachine.config.json -------------------------------------------------------------------------------- /src/app/[uid]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/app/[uid]/page.tsx -------------------------------------------------------------------------------- /src/app/api/exit-preview/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/app/api/exit-preview/route.ts -------------------------------------------------------------------------------- /src/app/api/preview/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/app/api/preview/route.ts -------------------------------------------------------------------------------- /src/app/api/revalidate/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/app/api/revalidate/route.ts -------------------------------------------------------------------------------- /src/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/app/app.css -------------------------------------------------------------------------------- /src/app/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/app/icon.svg -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/slice-simulator/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/app/slice-simulator/page.tsx -------------------------------------------------------------------------------- /src/components/Bounded.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/components/Bounded.tsx -------------------------------------------------------------------------------- /src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/components/Button.tsx -------------------------------------------------------------------------------- /src/components/CircleText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/components/CircleText.tsx -------------------------------------------------------------------------------- /src/components/FizziLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/components/FizziLogo.tsx -------------------------------------------------------------------------------- /src/components/FloatingCan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/components/FloatingCan.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/SodaCan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/components/SodaCan.tsx -------------------------------------------------------------------------------- /src/components/TextSplitter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/components/TextSplitter.tsx -------------------------------------------------------------------------------- /src/components/ViewCanvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/components/ViewCanvas.tsx -------------------------------------------------------------------------------- /src/hooks/useMediaQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/hooks/useMediaQuery.ts -------------------------------------------------------------------------------- /src/hooks/useStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/hooks/useStore.ts -------------------------------------------------------------------------------- /src/prismicio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/prismicio.ts -------------------------------------------------------------------------------- /src/slices/AlternatingText/Scene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/AlternatingText/Scene.tsx -------------------------------------------------------------------------------- /src/slices/AlternatingText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/AlternatingText/index.tsx -------------------------------------------------------------------------------- /src/slices/AlternatingText/mocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/AlternatingText/mocks.json -------------------------------------------------------------------------------- /src/slices/AlternatingText/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/AlternatingText/model.json -------------------------------------------------------------------------------- /src/slices/AlternatingText/screenshot-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/AlternatingText/screenshot-default.png -------------------------------------------------------------------------------- /src/slices/BigText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/BigText/index.tsx -------------------------------------------------------------------------------- /src/slices/BigText/mocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/BigText/mocks.json -------------------------------------------------------------------------------- /src/slices/BigText/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/BigText/model.json -------------------------------------------------------------------------------- /src/slices/BigText/screenshot-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/BigText/screenshot-default.png -------------------------------------------------------------------------------- /src/slices/Carousel/ArrowIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/Carousel/ArrowIcon.tsx -------------------------------------------------------------------------------- /src/slices/Carousel/WavyCircles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/Carousel/WavyCircles.tsx -------------------------------------------------------------------------------- /src/slices/Carousel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/Carousel/index.tsx -------------------------------------------------------------------------------- /src/slices/Carousel/mocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/Carousel/mocks.json -------------------------------------------------------------------------------- /src/slices/Carousel/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/Carousel/model.json -------------------------------------------------------------------------------- /src/slices/Carousel/screenshot-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/Carousel/screenshot-default.png -------------------------------------------------------------------------------- /src/slices/Hero/Bubbles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/Hero/Bubbles.tsx -------------------------------------------------------------------------------- /src/slices/Hero/Scene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/Hero/Scene.tsx -------------------------------------------------------------------------------- /src/slices/Hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/Hero/index.tsx -------------------------------------------------------------------------------- /src/slices/Hero/mocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/Hero/mocks.json -------------------------------------------------------------------------------- /src/slices/Hero/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/Hero/model.json -------------------------------------------------------------------------------- /src/slices/Hero/screenshot-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/Hero/screenshot-default.png -------------------------------------------------------------------------------- /src/slices/SkyDive/Scene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/SkyDive/Scene.tsx -------------------------------------------------------------------------------- /src/slices/SkyDive/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/SkyDive/index.tsx -------------------------------------------------------------------------------- /src/slices/SkyDive/mocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/SkyDive/mocks.json -------------------------------------------------------------------------------- /src/slices/SkyDive/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/SkyDive/model.json -------------------------------------------------------------------------------- /src/slices/SkyDive/screenshot-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/SkyDive/screenshot-default.png -------------------------------------------------------------------------------- /src/slices/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/src/slices/index.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedalex/Fizzi-3D-Website/HEAD/tsconfig.json --------------------------------------------------------------------------------