diff --git a/.env b/.env
index 8640fec..8549272 100644
--- a/.env
+++ b/.env
@@ -1,2 +1,2 @@
VITE_URL="robo-school"
-VITE_NODE_ENV="development"
\ No newline at end of file
+VITE_NODE_ENV="production"
\ No newline at end of file
diff --git a/src/Components/Before/Before.tsx b/src/Components/Before/Before.tsx
index 4f6427e..267626a 100644
--- a/src/Components/Before/Before.tsx
+++ b/src/Components/Before/Before.tsx
@@ -1,17 +1,31 @@
+import { motion } from "framer-motion"
+import { blockAnim } from "../../constants/animation"
import Title from "../ui/Title/Title"
import "./Before.sass"
import BeforeItem from "./BeforeItem/BeforeItem"
import { beforeData } from "./before.data"
+
const Before = () => {
return (
Что вы получите после курса
-
+
{beforeData.map(({ text, title }, index) => (
-
+
))}
-
+
)
diff --git a/src/Components/Before/BeforeItem/BeforeItem.tsx b/src/Components/Before/BeforeItem/BeforeItem.tsx
index 3e51bc9..36076ca 100644
--- a/src/Components/Before/BeforeItem/BeforeItem.tsx
+++ b/src/Components/Before/BeforeItem/BeforeItem.tsx
@@ -1,13 +1,16 @@
-import { FC } from "react"
+import { motion } from "framer-motion"
+import { FC, LegacyRef, forwardRef } from "react"
import { IBefore } from "../before.data"
-const BeforeItem: FC = ({ text, title }) => {
- return (
-
-