Skip to content

Instantly share code, notes, and snippets.

@Josh4324
Created October 31, 2022 12:57
Show Gist options
  • Save Josh4324/c09608d5d8e313feae048fefc667636b to your computer and use it in GitHub Desktop.
Save Josh4324/c09608d5d8e313feae048fefc667636b to your computer and use it in GitHub Desktop.
Video.js
import React, { useEffect, useState } from "react";
import Head from "next/head";
import Image from "next/image";
import styles from "../styles/Home.module.css";
import Sidebar from "../components/Sidebar";
export default function Video() {
return (
<div>
<Head>
<title>CloudDrop</title>
<meta name="description" content="Clouddrop" />
</Head>
<div className={styles.homeflex}>
<Sidebar />
<div className={styles.home}>
<h1 className={styles.homehead}>CloudDrop</h1>
<h2 className={styles.head2}>Videos</h2>
</div>
</div>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment