Skip to content

Commit

Permalink
feat: 애니메이션 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
gogumalatte committed Nov 15, 2024
1 parent ad34b66 commit 8a2906b
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 102 deletions.
20 changes: 0 additions & 20 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,33 +1,13 @@
// App.tsx
import { ChakraProvider } from "@chakra-ui/react";
import theme from "./styles/theme";
import { BubbleContainer } from "./components/Bubble/BubbleContainer";
import { Bubble } from "./components/Bubble/Bubble";
import { Wrapper } from "./components/Wrapper";
import { Routes } from "./routes/Routes";
import { useBubbles } from "./components/Bubble/useBubbles";

const App = () => {
const bubbles = useBubbles();

return (
<ChakraProvider theme={theme}>
<PageContainer>
<BubbleContainer>
{bubbles.map((bubble) => (
<Bubble
key={bubble.id}
style={{
left: `${bubble.left}%`,
bottom: `${bubble.bottom}%`,
width: `${bubble.size}px`,
height: `${bubble.size}px`,
animationDuration: `${bubble.duration}s`,
animationDelay: `${bubble.delay}s`,
}}
/>
))}
</BubbleContainer>
<Wrapper>
<Routes />
</Wrapper>
Expand Down
15 changes: 0 additions & 15 deletions src/components/Bubble/Bubble.tsx

This file was deleted.

9 changes: 0 additions & 9 deletions src/components/Bubble/BubbleContainer.tsx

This file was deleted.

15 changes: 0 additions & 15 deletions src/components/Bubble/bubbleRise.ts

This file was deleted.

43 changes: 0 additions & 43 deletions src/components/Bubble/useBubbles.ts

This file was deleted.

0 comments on commit 8a2906b

Please sign in to comment.