Skip to content

Commit

Permalink
Merge pull request #61 from gdhyani/footer-component
Browse files Browse the repository at this point in the history
Completed footer component
  • Loading branch information
Abidsyed25 authored Jun 8, 2024
2 parents 6f431da + eca3ffa commit 62bf3b2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Footer from "@/components/Footer";
import Hero from "@/components/Hero";
import { Nav } from "@/components/Nav";
import Image from "next/image";
Expand All @@ -7,6 +8,7 @@ export default function Home() {
<div className="bg-gray-950" style={{ height: "100vh" }}>
<Nav />
<Hero />
<Footer/>
</div>
);
}
7 changes: 7 additions & 0 deletions components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export default function Footer(){
return (
<div className="fixed bg-gradient-to-r from-blue-500 shadow-md bottom-0 left-0 w-screen text-white py-3 tracking-wider text-center text-sm">
<h1>Copyright © 2024, ScrapQuest. All Rights Reserved.</h1>
</div>
)
}
7 changes: 7 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 62bf3b2

Please sign in to comment.