Skip to content

Commit

Permalink
Update SearchPage.js
Browse files Browse the repository at this point in the history
  • Loading branch information
tunglambg131003 authored Jan 26, 2024
1 parent b27ea5e commit 0c5b311
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions frontend/src/Pages/SearchPage.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
import React from "react";
import SearchBar from "../Components/SearchBar";
import ExNavbar from "../Components/ExternalNavBar";
import Navbar from "../Components/Navbar";
import Footer from "../Components/Footer";
import {useState, useEffect} from "react";
import "../Styles/ScrollUp.css";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faAngleUp } from "@fortawesome/free-solid-svg-icons";
import About from "../Components/About";
import Contact from "../Components/Contact";


function SearchPage() {
const [goUp, setGoUp] = useState(false);
Expand All @@ -30,8 +33,10 @@ function SearchPage() {

return(
<div>
<ExNavbar />
<Navbar />
<SearchBar />
<About/>
<Contact/>
<Footer />
<div
onClick={scrollToTop}
Expand Down

0 comments on commit 0c5b311

Please sign in to comment.