pull/1/head
Elias Almqvist 1 year ago
parent 5d42bae5ee
commit 74b23765b1
No known key found for this signature in database
GPG Key ID: E31A99CE3E75A158
  1. 2
      src/app/page.tsx
  2. 2
      src/components/3d/curves/sphere.ts
  3. 2
      src/components/3d/renderer.tsx
  4. 2
      src/components/layout/index.tsx

@ -8,7 +8,7 @@ export default function Home() {
id="about" id="about"
curve={SphereCurve} curve={SphereCurve}
className="relative w-full h-full px-4 md:px-8 max-w-screen-2xl" className="relative w-full h-full px-4 md:px-8 max-w-screen-2xl"
curveClassname="w-full h-[calc(100vh-3.5rem)]" curveClassname="w-[38rem] h-[52rem] -right-32 md:right-8 overflow-hidden"
> >
<h1 className="text-2xl">Hello, I am a </h1> <h1 className="text-2xl">Hello, I am a </h1>
</RenderedSection> </RenderedSection>

@ -67,7 +67,7 @@ const update = (pc: THREE.Points<THREE.BufferGeometry>, group: THREE.Group) => {
const SphereCurve = { const SphereCurve = {
func: { init: init, update: update }, func: { init: init, update: update },
cam: { cam: {
pos: new THREE.Vector3(0, 0, 18).multiplyScalar(2), pos: new THREE.Vector3(0, 0, 18).multiplyScalar(1.7),
rotation: new THREE.Vector3(0, 0, 180), rotation: new THREE.Vector3(0, 0, 180),
}, },
particles: { particles: {

@ -104,7 +104,7 @@ const Renderer: React.FC<
> = ({ cam = { pos: new THREE.Vector3(0, 0, 0) }, ...props }) => { > = ({ cam = { pos: new THREE.Vector3(0, 0, 0) }, ...props }) => {
return ( return (
<Canvas gl={{ alpha: true }} className="transform"> <Canvas gl={{ alpha: true }} className="transform">
<pointLight position={[0, 0, 0]} color="#9BC995" /> <pointLight position={[0, 0, 0]} color="#fff" />
<perspectiveCamera position={cam.pos} /> <perspectiveCamera position={cam.pos} />
<FuncRenderer cam={cam} {...props} /> <FuncRenderer cam={cam} {...props} />
</Canvas> </Canvas>

@ -5,7 +5,7 @@ const Layout = ({ children }: { children: React.ReactNode }) => {
return ( return (
<> <>
<Header /> <Header />
<main className="w-full flex justify-center"> <main className="w-full flex justify-center overflow-x-clip">
{children} {children}
</main> </main>
<NavBinds /> <NavBinds />

Loading…
Cancel
Save