Skip to content

Commit

Permalink
frontend_setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Ans155 committed Jun 3, 2023
1 parent 08cec47 commit 47e6c1e
Show file tree
Hide file tree
Showing 33 changed files with 72 additions and 1 deletion.
Binary file added assets/account.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/acountName.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/avatar.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/buddy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/close.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/create.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/create2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/delete.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/dot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/file.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/friends.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/friends2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/hero.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img10.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img2.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img3.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img4.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img5.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img6.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img7.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img8.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img9.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
65 changes: 65 additions & 0 deletions assets/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
import logo from "./logo.png";
import close from "./close.png";
import open from "./open.png";
import search from "./search.png";
import avatar from "./avatar.gif";
import smile from "./smile.png";
import send from "./send.png";
import file from "./file.png";
import user from "./user.png";
import clear from "./delete.png";
import create from "./create.png";
import create2 from "./create2.png";
import buddy from "./buddy.png";
import hero from "./hero.png";
import account from "./account.png";
import username from "./username.png";
import friends from "./friends.png";
import friends2 from "./friends2.png";
import accountName from "./acountName.png";
import dot from "./dot.png";
import loader from "./loader.gif";
import image1 from "./img1.gif";
import image2 from "./img2.gif";
import image3 from "./img3.gif";
import image4 from "./img4.gif";
import image5 from "./img5.gif";
import image6 from "./img6.gif";
import image7 from "./img7.gif";
import image8 from "./img8.gif";
import image9 from "./img9.gif";
import image10 from "./img10.gif";

export default {
logo,
close,
open,
search,
avatar,
smile,
send,
file,
user,
clear,
create,
create2,
buddy,
hero,
account,
username,
friends,
friends2,
accountName,
dot,
loader,
image1,
image2,
image3,
image4,
image5,
image6,
image7,
image8,
image9,
image10,
};
Binary file added assets/loader.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/open.png
Binary file added assets/search.png
Binary file added assets/send.png
Binary file added assets/smile.png
Binary file added assets/user.png
Binary file added assets/username.png
8 changes: 7 additions & 1 deletion components/Navbar/navbar.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
import React from 'react'
import React, {useEffect, useState, useContext} from 'react'
import Image from 'next/image';
import Link from "next/link";

import Style from "./navbar.module.css";
import { AppContext } from '../../context/AppContext';
import { model, error } from '../index';

const navbar = () => {
return (
Expand Down

0 comments on commit 47e6c1e

Please sign in to comment.