Skip to content

Commit

Permalink
feat(web): adjust light ray
Browse files Browse the repository at this point in the history
  • Loading branch information
brunocroh committed May 19, 2024
1 parent 6e2a946 commit 469bdc5
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 17 deletions.
36 changes: 21 additions & 15 deletions apps/web/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,30 +1,36 @@
import { Button } from "@/components/ui/button";
import Image from "next/image";
import Link from "next/link";
import React from "react";

export default function Page(): JSX.Element {
return (
<main className="flex flex-col h-full">
<div>
<img
<Image
src="/light-ray.svg"
alt="Purple light ray"
width="1024"
height="800"
className="absolute animate-in fade-in slide-in-from-bottom-1"
style={{ color: "transparent", animationDuration: "5s" }}
style={{ color: "transparent", animationDuration: "10s" }}
/>
<div className="flex flex-row w-full">
<video
className=""
style={{
display: "block",
width: "920px",
height: "700px",
}}
playsInline
loop={true}
autoPlay={true}
muted={true}
src="/earth.mp4"
></video>
<div className="flex">
<video
className="w-full max-w-2xl rounded-lg animation-scale-in-fade"
style={{
display: "block",
width: "920px",
height: "700px",
}}
playsInline
loop={true}
autoPlay={true}
muted={true}
src="/earth.mp4"
></video>
</div>
<div className="content-center">
<Link href={`room/queue`}>
<Button className="bg-red-500 min-w-max">Start a chat</Button>
Expand Down
4 changes: 2 additions & 2 deletions apps/web/public/light-ray.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 469bdc5

Please sign in to comment.