Skip to content

Commit

Permalink
completed footer component
Browse files Browse the repository at this point in the history
  • Loading branch information
gdhyani committed Jun 4, 2024
1 parent 73afcc8 commit 6819f43
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 148 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 bottom-0 left-0 w-screen opacity-45 bg-[#1a1a1a] py-3 tracking-wider text-center text-sm">
<h1>Copyright © 2024, ScrapQuest. All Rights Reserved.</h1>
</div>
)
}
149 changes: 1 addition & 148 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 6819f43

Please sign in to comment.