Skip to content

Commit

Permalink
push the pitch
Browse files Browse the repository at this point in the history
  • Loading branch information
them2dt committed Apr 9, 2024
1 parent ea7a87c commit 875a244
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 38 deletions.
30 changes: 30 additions & 0 deletions app/pitch/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
"use client";
import Image from "next/image";
import React, { useState } from "react";
import { motion } from "framer-motion";
import Link from "next/link";

export default function Page() {
const [advanced, setAdvanced] = useState<boolean>(false);
return (
<div className="homepage flex-column-center-center">
<div className="section hero flex-column-start-center">
<div className="board flex-column-center-center">
<div className="navigation-container flex-row-center-center">
<motion.div
className="navigation flex-row-center-center"
initial={{ opacity: 0 }}
whileInView={{ opacity: 1 }}
exit={{ opacity: 0 }}
transition={{ delay: 0.1, duration: 0.1 }}
>
<Link href={"https://youtu.be/8kfDtB8vA4Q?si=mtWz-spvkglCUXgq"} target="_blank">
<div className="item launch font-h4">Open Pitch</div>
</Link>
</motion.div>
</div>
</div>
</div>
</div>
);
}
38 changes: 0 additions & 38 deletions app/test/page.tsx

This file was deleted.

7 changes: 7 additions & 0 deletions style/homepage.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
.homepage .board .navigation-container {
position: relative;
top: unset;
left: unset;
bottom: unset;
}

.homepage .navigation-container {
position: fixed;
left: 0;
Expand Down

0 comments on commit 875a244

Please sign in to comment.