Skip to content

Instantly share code, notes, and snippets.

@Josh4324
Created October 31, 2022 12:50
Show Gist options
  • Save Josh4324/b88133a34f41655202a5dfe6b03c8938 to your computer and use it in GitHub Desktop.
Save Josh4324/b88133a34f41655202a5dfe6b03c8938 to your computer and use it in GitHub Desktop.
photos.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 Photos() {
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}>Images</h2>
</div>
</div>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment