diff --git a/app/pitch/page.tsx b/app/pitch/page.tsx new file mode 100644 index 0000000..1e4b571 --- /dev/null +++ b/app/pitch/page.tsx @@ -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(false); + return ( +
+
+
+
+ + +
Open Pitch
+ +
+
+
+
+
+ ); +} diff --git a/app/test/page.tsx b/app/test/page.tsx deleted file mode 100644 index 4357fe9..0000000 --- a/app/test/page.tsx +++ /dev/null @@ -1,38 +0,0 @@ -"use client"; -import { useConnection, useWallet } from "@solana/wallet-adapter-react"; -import Header from "../../components/Header"; -import Navigation from "../../components/Navigation"; -import React, { useState } from "react"; -import { fetchAsset } from "@/backend/CORE"; -import { Connection } from "@solana/web3.js"; -//Container to wrap all elements of a page into a container. - -export default function Page() { - const themes = ["light", "dark", "candy", "navy"]; - const [theme, setTheme] = useState(0); - const { wallet } = useWallet(); - const { connection } = useConnection(); - - const run = async () => { - await fetchAsset({ wallet: wallet, connection: connection, assetId: "" }); - }; - return ( -
-
-
- -
- setTheme(themeIdParameter)} - /> -
-
-
- Have patience, while we work on the mobile version. -
-
-
- ); -} diff --git a/style/homepage.css b/style/homepage.css index 379f636..27e3ace 100644 --- a/style/homepage.css +++ b/style/homepage.css @@ -1,3 +1,10 @@ +.homepage .board .navigation-container { + position: relative; + top: unset; + left: unset; + bottom: unset; +} + .homepage .navigation-container { position: fixed; left: 0;