Skip to content

Commit

Permalink
feat: move mindset to main
Browse files Browse the repository at this point in the history
  • Loading branch information
Rassl committed Nov 24, 2024
1 parent a63b335 commit 9f42013
Show file tree
Hide file tree
Showing 23 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/AppContainer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { AppProviders } from '../App/Providers'
import { AuthGuard } from '../Auth'

const LazyApp = lazy(() => import('../App').then(({ App }) => ({ default: App })))
const LazyMindSet = lazy(() => import('../../modules/mindset').then(({ MindSet }) => ({ default: MindSet })))
const LazyMindSet = lazy(() => import('../mindset').then(({ MindSet }) => ({ default: MindSet })))

export const AppContainer = () => {
const App = <LazyApp />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Html, OrbitControls } from '@react-three/drei'
import { Canvas, useThree } from '@react-three/fiber'
import { useEffect, useState } from 'react'
import { Tooltip } from '~/components/common/ToolTip'
import { nodesWithTimestamp } from '~/modules/mindset/data'
import { nodesWithTimestamp } from '~/components/mindset/data'
import { Marker } from '../../Marker'

type Props = {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useThree } from '@react-three/fiber'
import { useEffect, useMemo } from 'react'
import { edges, edgesMention, maxTimestamp, minTimestamp, nodes, normalizeTimestamp } from '~/modules/mindset/data'
import { edges, edgesMention, maxTimestamp, minTimestamp, nodes, normalizeTimestamp } from '~/components/mindset/data'
import { Node } from './Node'

const totalDuration = 185
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import styled from 'styled-components'
import { Flex } from '~/components/common/Flex'
import { transcript } from '~/modules/mindset/data/transcript'
import { transcript } from '~/components/mindset/data/transcript'
import { usePlayerStore } from '~/stores/usePlayerStore'
import { colors } from '~/utils'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import styled from 'styled-components'
import { MENU_WIDTH } from '~/components/App/SideBar'
import { Flex } from '~/components/common/Flex'
import { Text } from '~/components/common/Text'
import { MediaPlayer } from '~/modules/mindset/components/MediaPlayer'
import { MediaPlayer } from '~/components/mindset/components/MediaPlayer'
import { useMindsetStore } from '~/stores/useMindsetStore'
import { Transcript } from './Transcript'

Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 9f42013

Please sign in to comment.