diff --git a/public/videos/pages/web/hero_0.mp4 b/public/videos/pages/web/hero_0.mp4 index 694f44b..a1e844a 100644 Binary files a/public/videos/pages/web/hero_0.mp4 and b/public/videos/pages/web/hero_0.mp4 differ diff --git a/public/videos/pages/web/hero_1.mp4 b/public/videos/pages/web/hero_1.mp4 index 8dbc964..a170ec9 100644 Binary files a/public/videos/pages/web/hero_1.mp4 and b/public/videos/pages/web/hero_1.mp4 differ diff --git a/public/videos/pages/web/hero_2.mp4 b/public/videos/pages/web/hero_2.mp4 index ed38fcf..d651a20 100644 Binary files a/public/videos/pages/web/hero_2.mp4 and b/public/videos/pages/web/hero_2.mp4 differ diff --git a/public/videos/pages/web/hero_3.mp4 b/public/videos/pages/web/hero_3.mp4 index 62518c0..5b5c43f 100644 Binary files a/public/videos/pages/web/hero_3.mp4 and b/public/videos/pages/web/hero_3.mp4 differ diff --git a/public/videos/pages/web/hero_4.mp4 b/public/videos/pages/web/hero_4.mp4 index 03e2560..cd35dd1 100644 Binary files a/public/videos/pages/web/hero_4.mp4 and b/public/videos/pages/web/hero_4.mp4 differ diff --git a/public/videos/pages/web/hero_5.mp4 b/public/videos/pages/web/hero_5.mp4 index bc7ad07..1ef2dc6 100644 Binary files a/public/videos/pages/web/hero_5.mp4 and b/public/videos/pages/web/hero_5.mp4 differ diff --git a/src/app/(main)/web/page.tsx b/src/app/(main)/web/page.tsx index 591bd5a..756df90 100644 --- a/src/app/(main)/web/page.tsx +++ b/src/app/(main)/web/page.tsx @@ -1,5 +1,6 @@ -import { InProcess } from '@/components/pages/InProcess'; +import { InProcess } from "@/components/pages/InProcess"; +import WebMain from "@/components/pages/WebPage/WebMain"; export default function WebPage() { - return ; + return ; } diff --git a/src/components/icons/3DTourIcon.tsx b/src/components/icons/3DTourIcon.tsx new file mode 100644 index 0000000..63db4c6 --- /dev/null +++ b/src/components/icons/3DTourIcon.tsx @@ -0,0 +1,21 @@ +import * as React from "react"; +const ThreeDTourIcon = (props: React.SVGProps) => ( + + + + +); +export default ThreeDTourIcon; diff --git a/src/components/pages/WebPage/PageBlocks/WebHero.tsx b/src/components/pages/WebPage/PageBlocks/WebHero.tsx index d87b7df..1d28298 100644 --- a/src/components/pages/WebPage/PageBlocks/WebHero.tsx +++ b/src/components/pages/WebPage/PageBlocks/WebHero.tsx @@ -3,12 +3,12 @@ import React, { useCallback, useEffect, useRef, useState } from "react"; import SearchIcon from "@/icons/SearchIcon"; import GenPlanSearchIcon from "@/components/icons/GenPlanSearchIcon"; -import InfoIcon from "@/components/icons/InfoIcon"; import TreeIcon from "@/components/icons/TreeIcon"; import FavoriteIcon from "@/components/icons/FavoriteIcon"; -import ReportIcon from "@/components/icons/ReportIcon"; import WebHeroControlBtn from "../PageComponents/WebHeroControlBtn"; import { AnimatePresence, motion } from "framer-motion"; +import ThreeDTourIcon from "@/components/icons/3DTourIcon"; +import InfoIcon from "@/components/icons/InfoIcon"; export default function WebHero() { const videoRef = useRef(null); @@ -107,8 +107,8 @@ export default function WebHero() { progress={currentVideo === 1 ? playbackProgress : 0} /> } + title={"3D tour of the apartment"} + icon={} className="top-[17.5vw] left-[16.389vw]" active={currentVideo === 2} callback={() => onControlButtonClick(2)} @@ -133,8 +133,8 @@ export default function WebHero() { /> } + title={"About the project"} + icon={} className="top-[14.722vw] right-0" active={currentVideo === 5} callback={() => onControlButtonClick(5)}