Skip to content

Commit

Permalink
Test videos
Browse files Browse the repository at this point in the history
  • Loading branch information
Bluesmile82 committed Oct 7, 2024
1 parent 920b4c4 commit 8c1716b
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 5 deletions.
Binary file added public/iberia_hist_scenario.mp4
Binary file not shown.
Binary file added public/tp_amazonia_10km.mp4
Binary file not shown.
Binary file modified public/wind_speed_global_10km.mp4
Binary file not shown.
11 changes: 11 additions & 0 deletions src/app/globe/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import Globe from "@/components/globe";

export default function Globetest() {
return (
<main className="flex min-h-screen h-[3000px] flex-col items-center justify-between p-24 text-blue-800">
<div className="fixed top-8">
<Globe />
</div>
</main >
);
}
9 changes: 9 additions & 0 deletions src/app/grid/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
export default function GridTest() {
return (
<main className="flex min-h-screen h-[3000px] flex-col items-center justify-between p-24 text-blue-800">
<div className="fixed top-8">
grid
</div>
</main >
);
}
10 changes: 6 additions & 4 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import Globe from "@/components/globe";
import Link from "next/link";

export default function Home() {
return (
<main className="flex min-h-screen h-[3000px] flex-col items-center justify-between p-24 text-blue-800">
<main className="flex min-h-screen h-[300px] flex-col items-center p-24 text-blue-800">
Hello BSC!
<div className="fixed top-8">
<Globe />
<div className="text-black text-lg hover:gray-500 space-x-5">

<Link href="/globe">Globe</Link>
<Link href="/grid">Grid</Link>
</div>
</main >
);
Expand Down
4 changes: 3 additions & 1 deletion src/components/globe/marker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ const Popup = ({ setSelectedMarker, index }: {
<div className='h-[350px] pl-8 pr-4 py-8 bg-white/20 backdrop-blur-[15px] gap-6 inline-flex'>
<div className="gap-6 flex">
<div className="w-[286px] h-[286px] justify-center items-center flex">
<img alt="" className="w-[280px] h-[280px] left-[3px] top-[3px]" src="https://via.placeholder.com/280x280" />
<video className="w-[280px] h-[280px] rounded-[50px]" autoPlay loop muted>
<source src="/iberia_hist_scenario.mp4" type="video/mp4" />
</video>
</div>
<div className="flex-col gap-2.5 inline-flex">
<div className="grow shrink basis-0 flex-col justify-start items-start gap-4 flex">
Expand Down

0 comments on commit 8c1716b

Please sign in to comment.